Mercurial > hg > xemacs-beta
diff src/unexsol2.c @ 205:92f8ad5d0d3f r20-4b1
Import from CVS: tag r20-4b1
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:02:46 +0200 |
parents | 850242ba4a81 |
children |
line wrap: on
line diff
--- a/src/unexsol2.c Mon Aug 13 10:02:23 2007 +0200 +++ b/src/unexsol2.c Mon Aug 13 10:02:46 2007 +0200 @@ -20,7 +20,7 @@ /* Synched up with: Not in FSF. */ -/* #pragma ident "@(#) $Id: unexsol2.c,v 1.2 1997/10/12 01:40:18 steve Exp $" */ +/* #pragma ident "@(#) $Id: unexsol2.c,v 1.3 1997/10/13 03:35:33 steve Exp $" */ #include <stdlib.h> #include <stdio.h> @@ -36,7 +36,7 @@ unsigned int bss_start, unsigned int entry_address) { void *handle; - void (*func)(CONST char *file); + void (*func)(const char *file); if ((handle = dlopen (DYNODUMP_SO, RTLD_LAZY)) == NULL) { @@ -45,7 +45,7 @@ exit (1); } - if ((func = (void (*)(CONST char *)) dlsym (handle, DYNODUMP_SYM)) == NULL) + if ((func = (void (*)(const char *)) dlsym (handle, DYNODUMP_SYM)) == NULL) { fprintf (stderr, "unexec(): dlsym(%s): %s \n", (char *) DYNODUMP_SYM, dlerror());