diff src/unexfreebsd.c @ 442:abe6d1db359e r21-2-36

Import from CVS: tag r21-2-36
author cvs
date Mon, 13 Aug 2007 11:35:02 +0200
parents 84b14dcb0985
children 2b6fa2618f76
line wrap: on
line diff
--- a/src/unexfreebsd.c	Mon Aug 13 11:33:40 2007 +0200
+++ b/src/unexfreebsd.c	Mon Aug 13 11:35:02 2007 +0200
@@ -71,7 +71,7 @@
 
 /********************** 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 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 - ");