From 9f6d5576aad2d8d44f416810cf7c9cc2872edce4 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 11 Nov 1998 05:16:09 +0000 Subject: [PATCH] back out last change: there is a better way --- lib/backupfile.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/backupfile.c b/lib/backupfile.c index c20337a0a8..a22a7f235e 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]; } -- 2.30.2