changeset 21237:acfcb54c4ddb

(BACKUPFILE_EXIT_FAILURE): Define. (get_version): Use it in place of EXIT_FAILURE.
author Jim Meyering <jim@meyering.net>
date Wed, 11 Nov 1998 05:01:26 +0000
parents 31b8649845cc
children 824ca6c9c1e3
files lib/backupfile.c
diffstat 1 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lib/backupfile.c	Tue Nov 10 07:03:05 1998 +0000
+++ b/lib/backupfile.c	Wed Nov 11 05:01:26 1998 +0000
@@ -105,6 +105,10 @@
 # define EXIT_FAILURE 1
 #endif
 
+#ifndef BACKUPFILE_EXIT_FAILURE
+# define BACKUPFILE_EXIT_FAILURE EXIT_FAILURE
+#endif
+
 /* The extension added to file names to produce a simple (as opposed
    to numbered) backup file name. */
 const char *simple_backup_suffix = "~";
@@ -244,7 +248,7 @@
   if (i < 0)
     {
       invalid_arg ("version control type", version, i);
-      exit (EXIT_FAILURE);
+      exit (BACKUPFILE_EXIT_FAILURE);
     }
   return backup_types[i];
 }