summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2007-02-18 22:34:37 +0100
committerJim Meyering <jim@meyering.net>2007-02-18 22:34:37 +0100
commit6819756293ae8a0090d63b085cd60b64904b431b (patch)
treec939a382796abbc42170ae343b77d87f2afd50c9 /src
parentc95bb0c6f075e9301c13bbfc107517cde1575bb4 (diff)
downloadcoreutils-6819756293ae8a0090d63b085cd60b64904b431b.tar.xz
Rely on gnulib-generated stdlib.h, not exit.h.
* src/system.h: Don't include exit.h, now that it's subsumed by the gnulib-generated stdlib.h. * lib/xfts.c: Include <stdlib.h> rather than exit.h, now that stdlib.h
Diffstat (limited to 'src')
-rw-r--r--src/system.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/system.h b/src/system.h
index 383388bab..763909bac 100644
--- a/src/system.h
+++ b/src/system.h
@@ -1,5 +1,5 @@
/* system-dependent definitions for coreutils
- Copyright (C) 1989, 1991-2006 Free Software Foundation, Inc.
+ Copyright (C) 1989, 1991-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
@@ -113,7 +113,6 @@ you must include <sys/types.h> before including this file
#include <stdbool.h>
#include <stdlib.h>
-#include <exit.h>
/* Exit statuses for programs like 'env' that exec other programs.
EXIT_FAILURE might not be 1, so use EXIT_FAIL in such programs. */