X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=src%2Femodules.h;h=71d57265d46016c04908c2b727c02a51f535acc4;hb=3aca7317dd930beecbddba646284279744087e69;hp=9cfd639b803f1e0207fa070a5521c28cb032f52f;hpb=f3ec20f455f3f1212d2c5ee4cadc984330da9c38;p=chise%2Fxemacs-chise.git- diff --git a/src/emodules.h b/src/emodules.h index 9cfd639..71d5726 100644 --- a/src/emodules.h +++ b/src/emodules.h @@ -64,7 +64,7 @@ extern Lisp_Object Vemacs_minor_version; * 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 @@ extern void emodules_load (CONST char *module, CONST char *name, CONST char *ver * 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 */ -