X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=src%2Funexfreebsd.c;h=790d5498dc311318b5919e0f8e9d836623a8c9ef;hb=d1772ff384b161fa884517d201956e477afad354;hp=0a974882c1e5e1feb39aba1a9abf9fd51e5ff79c;hpb=b5eeb6918c29470b36f8461c402eb0c65cb19bd2;p=chise%2Fxemacs-chise.git.1 diff --git a/src/unexfreebsd.c b/src/unexfreebsd.c index 0a97488..790d549 100644 --- a/src/unexfreebsd.c +++ b/src/unexfreebsd.c @@ -71,7 +71,7 @@ struct translation_struct /********************** Function Prototypes/Declarations ***********/ -static void unexec_error (CONST char *m, int use_errno, ...); +static void unexec_error (const char *m, int use_errno, ...); static int unexec_open (char *filename, int flag, int mode); static caddr_t unexec_mmap (int fd, size_t len, int prot, int flags); static long unexec_seek (int fd, long position); @@ -104,9 +104,9 @@ static unsigned long sbrk_of_0_at_unexec; /*******************************************************************/ static void -unexec_error (CONST char *fmt, int use_errno, ...) +unexec_error (const char *fmt, int use_errno, ...) { - CONST char *err_msg = SYS_ERR; + const char *err_msg = SYS_ERR; va_list args; fprintf (stderr, "unexec - ");