# HG changeset patch # User Jim Meyering # Date 910761369 0 # Node ID d9acd7c90c7851a688153058b24a034de5049646 # Parent 5d3ed3718493b6316bb73dc5418c9623986ca7e7 back out last change: there is a better way diff --git a/lib/backupfile.c b/lib/backupfile.c --- a/lib/backupfile.c +++ b/lib/backupfile.c @@ -105,10 +105,6 @@ # 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 @@ if (i < 0) { invalid_arg ("version control type", version, i); - exit (BACKUPFILE_EXIT_FAILURE); + exit (EXIT_FAILURE); } return backup_types[i]; }