diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-03-17 11:41:30 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-03-17 11:41:30 -0700 |
commit | 381259ef0debba4c0bb07bb5473467c1d4d84223 (patch) | |
tree | a6bc6304596874e7cb6cb3074b0b922c4cadba85 /src/unexaix.c | |
parent | a3a6c54ec72118e8d22d2ecd608df5193c8926a3 (diff) | |
download | emacs-381259ef0debba4c0bb07bb5473467c1d4d84223.tar.gz emacs-381259ef0debba4c0bb07bb5473467c1d4d84223.tar.bz2 emacs-381259ef0debba4c0bb07bb5473467c1d4d84223.zip |
Change unexec implementations to match prototype.
Diffstat (limited to 'src/unexaix.c')
-rw-r--r-- | src/unexaix.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/unexaix.c b/src/unexaix.c index 612d7c1fecf..e6aad2db775 100644 --- a/src/unexaix.c +++ b/src/unexaix.c @@ -121,7 +121,8 @@ static void write_segment (int, char *, char *); * * driving logic. */ -int unexec (const char *new_name, const char *a_name) +void +unexec (const char *new_name, const char *a_name) { int new = -1, a_out = -1; @@ -141,14 +142,12 @@ int unexec (const char *new_name, const char *a_name) || unrelocate_symbols (new, a_out, a_name, new_name) < 0) { close (new); - return -1; } close (new); if (a_out >= 0) close (a_out); mark_x (new_name); - return 0; } /* **************************************************************** @@ -639,4 +638,3 @@ start_of_text (void) { return ((char *) 0x10000000); } - |