xref: /netbsd-src/external/gpl2/diffutils/dist/lib/exitfail.c (revision 75f6d617e282811cb173c2ccfbf5df0dd71f7045)
1*75f6d617Schristos /*	$NetBSD: exitfail.c,v 1.1.1.1 2016/01/13 03:15:30 christos Exp $	*/
2*75f6d617Schristos 
3*75f6d617Schristos /* Failure exit status
4*75f6d617Schristos 
5*75f6d617Schristos    Copyright (C) 2002 Free Software Foundation, Inc.
6*75f6d617Schristos 
7*75f6d617Schristos    This program is free software; you can redistribute it and/or modify
8*75f6d617Schristos    it under the terms of the GNU General Public License as published by
9*75f6d617Schristos    the Free Software Foundation; either version 2, or (at your option)
10*75f6d617Schristos    any later version.
11*75f6d617Schristos 
12*75f6d617Schristos    This program is distributed in the hope that it will be useful,
13*75f6d617Schristos    but WITHOUT ANY WARRANTY; without even the implied warranty of
14*75f6d617Schristos    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15*75f6d617Schristos    GNU General Public License for more details.
16*75f6d617Schristos 
17*75f6d617Schristos    You should have received a copy of the GNU General Public License
18*75f6d617Schristos    along with this program; see the file COPYING.
19*75f6d617Schristos    If not, write to the Free Software Foundation,
20*75f6d617Schristos    59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
21*75f6d617Schristos 
22*75f6d617Schristos #if HAVE_CONFIG_H
23*75f6d617Schristos # include <config.h>
24*75f6d617Schristos #endif
25*75f6d617Schristos 
26*75f6d617Schristos #if HAVE_STDLIB_H
27*75f6d617Schristos # include <stdlib.h>
28*75f6d617Schristos #endif
29*75f6d617Schristos #ifndef EXIT_FAILURE
30*75f6d617Schristos # define EXIT_FAILURE 1
31*75f6d617Schristos #endif
32*75f6d617Schristos 
33*75f6d617Schristos int volatile exit_failure = EXIT_FAILURE;
34