aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-01-07 10:22:16 +0000
committerRichard M. Stallman1993-01-07 10:22:16 +0000
commitf3bca33c572f2eaae370e958dc1fce7898791e39 (patch)
tree9fc4026b5237107c5a3cdf7b26f8e6010840c3ee /src
parentd2561f346f2241b8157221070712eebff4a9f4af (diff)
downloademacs-f3bca33c572f2eaae370e958dc1fce7898791e39.tar.gz
emacs-f3bca33c572f2eaae370e958dc1fce7898791e39.zip
(unexec): Don't call exit, just return.
Diffstat (limited to 'src')
-rw-r--r--src/unexhp9k800.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unexhp9k800.c b/src/unexhp9k800.c
index 8d34a3a3d7a..c7902f1e948 100644
--- a/src/unexhp9k800.c
+++ b/src/unexhp9k800.c
@@ -107,7 +107,7 @@ unexec(new_name, old_name, new_end_of_text, dummy1, dummy2)
107 /* Close the binary file */ 107 /* Close the binary file */
108 close(old); 108 close(old);
109 close(new); 109 close(new);
110 exit(0); 110 return 0;
111} 111}
112 112
113/* Save current data space in the file, update header. */ 113/* Save current data space in the file, update header. */