]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - hack/def.func_tab.h
Use more markup, and bump date for ppt's -d flag.
[bsdgames-darwin.git] / hack / def.func_tab.h
index 363c8f3b38190853d46457552152f8371fb7ca7c..100c0a6a3ba1e39e194b86489269bec685673487 100644 (file)
@@ -1,19 +1,21 @@
+/*     $NetBSD: def.func_tab.h,v 1.5 2001/03/25 20:43:58 jsm Exp $     */
+
 /*
  * Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
- *
- *     $NetBSD: def.func_tab.h,v 1.3 1995/03/23 08:29:23 cgd Exp $
  */
-
+#ifndef _DEF_FUNC_TAB_H_
+#define _DEF_FUNC_TAB_H_
 struct func_tab {
        char f_char;
-       int (*f_funct)();
+       int (*f_funct) __P((void));
 };
 
-extern struct func_tab cmdlist[];
+extern const struct func_tab cmdlist[];
 
 struct ext_func_tab {
-       char *ef_txt;
-       int (*ef_funct)();
+       const char *ef_txt;
+       int (*ef_funct) __P((void));
 };
 
-extern struct ext_func_tab extcmdlist[];
+extern const struct ext_func_tab extcmdlist[];
+#endif /* _DEF_FUNC_TAB_H_ */