]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - hack/def.func_tab.h
Provide a BN_dec2bn() shim for the non-openssl case that reports an error
[bsdgames-darwin.git] / hack / def.func_tab.h
index ca1fd352d28c4cca7615322f2a568ff3f95a74a3..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.
- *
- *     $Id: def.func_tab.h,v 1.2 1993/08/02 17:16:43 mycroft 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_ */