diff options
author | Jim Meyering <jim@meyering.net> | 2007-02-18 22:34:37 +0100 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2007-02-18 22:34:37 +0100 |
commit | 6819756293ae8a0090d63b085cd60b64904b431b (patch) | |
tree | c939a382796abbc42170ae343b77d87f2afd50c9 /lib | |
parent | c95bb0c6f075e9301c13bbfc107517cde1575bb4 (diff) | |
download | coreutils-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 'lib')
-rw-r--r-- | lib/ChangeLog | 5 | ||||
-rw-r--r-- | lib/xfts.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lib/ChangeLog b/lib/ChangeLog index 793a227f9..09b54b649 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,8 @@ +2007-02-18 Jim Meyering <jim@meyering.net> + + * xfts.c: Include <stdlib.h> rather than exit.h, now that stdlib.h + is guaranteed to provide a valid definition of EXIT_FAILURE. + 2007-01-19 Jim Meyering <jim@meyering.net> * .cvsignore, .gitignore: Add sys, as well as more diff --git a/lib/xfts.c b/lib/xfts.c index f06fa7b1b..1402e95e3 100644 --- a/lib/xfts.c +++ b/lib/xfts.c @@ -1,6 +1,6 @@ /* xfts.c -- a wrapper for fts_open - Copyright (C) 2003, 2005, 2006 Free Software Foundation, Inc. + Copyright (C) 2003, 2005-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 @@ -21,8 +21,8 @@ #include <config.h> #include <stdbool.h> +#include <stdlib.h> -#include "exit.h" #include "error.h" #include "gettext.h" |