e8ee492dc684110499a625782ffec134ccd0ce82
[pspp] / src / ui / gui / dummy.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2020  Free Software Foundation
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
18
19 /* This file exists merely to keep the dynamic linker happy when
20    trying to resolve symbols in the libpsppire-glade.so library
21    (used to define psppire's custom widgets in glade).  This
22    file should not be linked into any binary or library used by
23    pspp or psppire themsleves.  */
24
25
26 #include <config.h>
27 #include <assert.h>
28
29 #include <gtk/gtk.h>
30
31 #include "src/language/stats/chart-category.h"
32
33 const GEnumValue align[1];
34 const GEnumValue measure[1];
35 const GEnumValue role[1];
36
37 const int N_AG_FUNCS = 0;
38 const struct ag_func ag_func[1];
39
40 int F_8_0;
41
42 int
43 var_is_numeric ()
44 {
45   assert (0);
46   return -1;
47 }
48
49 int
50 tt_options_dialog_run ()
51 {
52   assert (0);
53   return -1;
54 }
55
56 int
57 agr_func_tab ()
58 {
59   assert (0);
60   return -1;
61 }