X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fdummy.c;h=f103b7d4e44491fada59887f75f43eea7d0f042d;hb=ff72dea565ea406e17beccc051d50e40e9294b08;hp=fa28d207b3553273b322cd4ea5315171c5a85bfb;hpb=4e1d74dd9fa376152dea685917741cee77c0e059;p=pspp diff --git a/src/ui/gui/dummy.c b/src/ui/gui/dummy.c index fa28d207b3..f103b7d4e4 100644 --- a/src/ui/gui/dummy.c +++ b/src/ui/gui/dummy.c @@ -24,6 +24,7 @@ #include +#include #include @@ -33,15 +34,32 @@ const GEnumValue align[1]; const GEnumValue measure[1]; const GEnumValue role[1]; - const int N_AG_FUNCS = 0; const struct ag_func ag_func[1]; int F_8_0; -int var_is_numeric () {} - - -int tt_options_dialog_run () {} - -int agr_func_tab () {} +int var_is_numeric (void); +int tt_options_dialog_run (void); +int agr_func_tab (void); + +int +var_is_numeric () +{ + assert (0); + return -1; +} + +int +tt_options_dialog_run () +{ + assert (0); + return -1; +} + +int +agr_func_tab () +{ + assert (0); + return -1; +}