diff options
author | Thien-Thi Nguyen <ttn@gnuvola.org> | 2004-05-08 15:26:33 +0000 |
---|---|---|
committer | Thien-Thi Nguyen <ttn@gnuvola.org> | 2004-05-08 15:26:33 +0000 |
commit | 65396510c3ff5e5386560d586cb117f6a9d06c27 (patch) | |
tree | e1240e2d08ba9f72fe44e62318c67c3065913d1c /lib-src/test-distrib.c | |
parent | 28712a21247d1a503e7620e47c128c0fc33b3bb3 (diff) | |
download | emacs-65396510c3ff5e5386560d586cb117f6a9d06c27.tar.gz |
Throughout, replace 0 destined for `exit' arg with `EXIT_SUCCESS'.
Likewise, replace 1 with `EXIT_FAILURE'.
(main): Use `EXIT_SUCCESS' or `EXIT_FAILURE' for return value.
Diffstat (limited to 'lib-src/test-distrib.c')
-rw-r--r-- | lib-src/test-distrib.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib-src/test-distrib.c b/lib-src/test-distrib.c index f7b3a8b8004..97e87695c7c 100644 --- a/lib-src/test-distrib.c +++ b/lib-src/test-distrib.c @@ -100,11 +100,10 @@ have been corrupted in the files of Emacs, and it will not work.\n", exit (2); } close (fd); -#ifdef VMS - exit (1); /* On VMS, success is 1. */ -#endif - return (0); + return EXIT_SUCCESS; } /* arch-tag: 3a89005d-df98-4c32-aa9f-33570e16a26a (do not change this comment) */ + +/* test-distrib.c ends here */ |