diff src/emodules.h @ 398:74fd4e045ea6 r21-2-29

Import from CVS: tag r21-2-29
author cvs
date Mon, 13 Aug 2007 11:13:30 +0200
parents aabb7f5b1c81
children 697ef44129c6
line wrap: on
line diff
--- a/src/emodules.h	Mon Aug 13 11:12:06 2007 +0200
+++ b/src/emodules.h	Mon Aug 13 11:13:30 2007 +0200
@@ -64,7 +64,7 @@
  * specified version before. We also use these as checks when we open the
  * module to make sure we have the right module.
  */
-extern void emodules_load (CONST char *module, CONST char *name, CONST char *version);
+extern void emodules_load (const char *module, const char *name, const char *version);
 
 /*
  * Because subrs and symbols added by a dynamic module are not part of
@@ -75,12 +75,11 @@
  * into the right place. These functions will be called by the module
  * init code, generated by ellcc during initialization mode.
  */
-extern void emodules_doc_subr (CONST char *objname, CONST char *docstr);
-extern void emodules_doc_sym (CONST char *objname, CONST char *docstr);
+extern void emodules_doc_subr (const char *objname, const char *docstr);
+extern void emodules_doc_sym (const char *objname, const char *docstr);
 
 #define CDOCSUBR(Fname, DOC) emodules_doc_subr (Fname, DOC)
 #define CDOCSYM(Sname, DOC)  emodules_doc_sym  (Sname, DOC)
 #endif /* EMODULES_GATHER_VERSION */
 
 #endif /* EMODULES_HDR */
-