diff options
author | Jim Meyering <jim@meyering.net> | 2003-09-11 09:06:50 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-09-11 09:06:50 +0000 |
commit | e60a0548b7871d793b5055b9e58a70f904bb1bee (patch) | |
tree | be10e85b9cc0bdf27945b06f619c754f5a2f6993 /lib | |
parent | 03dd48e562f58d5a68071291db9459c391ec1d49 (diff) | |
download | coreutils-e60a0548b7871d793b5055b9e58a70f904bb1bee.tar.xz |
Include <stdlib.h> unconditionally.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/rpmatch.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/rpmatch.c b/lib/rpmatch.c index 7759d0ca7..7ed4ded90 100644 --- a/lib/rpmatch.c +++ b/lib/rpmatch.c @@ -21,9 +21,7 @@ #endif #include <stddef.h> -#if STDC_HEADERS || _LIBC -# include <stdlib.h> -#endif +#include <stdlib.h> #if ENABLE_NLS # include <sys/types.h> |