Remove string stat_version
[pspp] / src / libpspp / version.h
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000, 2010 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation, either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17 #if !version_h
18 #define version_h 1
19
20 /* "A.B.C" */
21 extern const char bare_version[];
22
23 /* "GNU PSPP A.B.C" */
24 extern const char version[];
25
26 /* Canonical name of host system type. */
27 extern const char host_system[];
28
29 /* Canonical name of build system type. */
30 extern const char build_system[];
31
32 /* Locale directory. */
33 extern const char locale_dir[];
34
35 /* The Examples directory */
36 extern const char const examples_dir[];
37
38 /* From the AUTHORS file */
39 extern const char *const authors[];
40
41
42 #endif /* !version_h */