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/unexhp9k800.c | |
parent | a3a6c54ec72118e8d22d2ecd608df5193c8926a3 (diff) | |
download | emacs-381259ef0debba4c0bb07bb5473467c1d4d84223.tar.gz |
Change unexec implementations to match prototype.
Diffstat (limited to 'src/unexhp9k800.c')
-rw-r--r-- | src/unexhp9k800.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/unexhp9k800.c b/src/unexhp9k800.c index 9889ffd63fc..f27415a252c 100644 --- a/src/unexhp9k800.c +++ b/src/unexhp9k800.c @@ -76,7 +76,7 @@ run_time_remap (ignored) /* Create a new a.out file, same as old but with current data space */ -int +void unexec (const char *new_name, /* name of the new a.out file to be created */ const char *old_name) /* name of the old a.out file */ { @@ -133,7 +133,6 @@ unexec (const char *new_name, /* name of the new a.out file to be created * /* Close the binary file */ close (old); close (new); - return 0; } /* Save current data space in the file, update header. */ |