Add stub for USE ALL.
[pspp] / src / command.h
index 0a61996d5e6b94187f02661019e7f980606590d5..423a8a30195a9e0802a10f1cf2cc8d4bc6cc648a 100644 (file)
@@ -43,7 +43,17 @@ enum
 extern int pgm_state;
 extern const char *cur_proc;
 
-void cmd_init (void);
 int cmd_parse (void);
 
+/* Prototype all the command functions. */
+#define DEFCMD(NAME, T1, T2, T3, T4, FUNC)     \
+       int FUNC (void);
+#define SPCCMD(NAME, T1, T2, T3, T4, FUNC)     \
+       int FUNC (void);
+#define UNIMPL(NAME, T1, T2, T3, T4)
+#include "command.def"
+#undef DEFCMD
+#undef SPCCMD
+#undef UNIMPL
+
 #endif /* !command_h */