summaryrefslogtreecommitdiff
path: root/lib/exitfail.c
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2007-02-18 21:08:06 +0000
committerBruno Haible <bruno@clisp.org>2007-02-18 21:08:06 +0000
commit9fbb5dcb459bf25d5e7b89fc209359e1a61a5214 (patch)
treee8029a7135141e2ab8133e1c63ee3deb1f2d68b0 /lib/exitfail.c
parent3a9097ff8ab278180c9321fd29b8f1569bc9f111 (diff)
downloadgnulib-9fbb5dcb459bf25d5e7b89fc209359e1a61a5214.tar.gz
exit.h is replaced with stdlib.h.
Diffstat (limited to 'lib/exitfail.c')
-rw-r--r--lib/exitfail.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/exitfail.c b/lib/exitfail.c
index 97abc674ec..373d325c5a 100644
--- a/lib/exitfail.c
+++ b/lib/exitfail.c
@@ -1,6 +1,6 @@
/* Failure exit status
- Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+ Copyright (C) 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -20,6 +20,7 @@
#include <config.h>
#include "exitfail.h"
-#include "exit.h"
+
+#include <stdlib.h>
int volatile exit_failure = EXIT_FAILURE;