diff options
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 */ |