summaryrefslogtreecommitdiff
path: root/lib/backupfile.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1998-11-11 05:16:09 +0000
committerJim Meyering <jim@meyering.net>1998-11-11 05:16:09 +0000
commit6c0c08eb29fafc5c8babf2ed67495412654ae3d4 (patch)
tree8c55f3498a5f6a4730b213ed6b45583d8b9e3d5b /lib/backupfile.c
parent7de9edecfc088c973c67b300314bb9fe03818ad3 (diff)
downloadcoreutils-6c0c08eb29fafc5c8babf2ed67495412654ae3d4.tar.xz
back out last change: there is a better way
Diffstat (limited to 'lib/backupfile.c')
-rw-r--r--lib/backupfile.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/backupfile.c b/lib/backupfile.c
index c20337a0a..a22a7f235 100644
--- a/lib/backupfile.c
+++ b/lib/backupfile.c
@@ -105,10 +105,6 @@ char *malloc ();
# 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 = "~";
@@ -248,7 +244,7 @@ get_version (const char *version)
if (i < 0)
{
invalid_arg ("version control type", version, i);
- exit (BACKUPFILE_EXIT_FAILURE);
+ exit (EXIT_FAILURE);
}
return backup_types[i];
}