Changed DFM from open-at-first-access to explicit-open. Before,
[pspp-builds.git] / src / command.h
index b051a4be1b8773cdc8a218b095c875e2e544ebdf..423a8a30195a9e0802a10f1cf2cc8d4bc6cc648a 100644 (file)
@@ -43,15 +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 */