]> code.delx.au - gnu-emacs/blobdiff - src/unexsol.c
xstrcasecmp: conform to C89 pointer rules
[gnu-emacs] / src / unexsol.c
index 04e3f40799c1304652eb6550bd3b9f6a87c4b71c..e1a10f7d2119173f0e66f8ef4a2e8906a76a5a41 100644 (file)
@@ -1,7 +1,6 @@
 /* Trivial unexec for Solaris.  */
 
 #include <config.h>
-#include <stdlib.h>
 #include <dlfcn.h>
 #include <setjmp.h>
 
@@ -11,8 +10,7 @@
 #include "coding.h"
 
 int
-unexec (char *new_name, char *old_name, unsigned int data_start,
-        unsigned int bss_start, unsigned int entry_address)
+unexec (const char *new_name, const char *old_name)
 {
   Lisp_Object data;
   Lisp_Object errstring;
@@ -29,5 +27,3 @@ unexec (char *new_name, char *old_name, unsigned int data_start,
           Fcons (build_string ("Cannot unexec"), Fcons (errstring, data)));
 }
 
-/* arch-tag: d8ff72b3-8198-4011-8ef5-011b12027f59
-   (do not change this comment) */