diff options
author | Jim Meyering <jim@meyering.net> | 2005-08-25 16:28:18 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-08-25 16:28:18 +0000 |
commit | dd03b039e8acf3060c9dc1c3f2ec005398479ee5 (patch) | |
tree | d8abbf5e42030e0bfae1acb70084f30bf02610ea /lib | |
parent | 1d6e649c837a01cfedd7dba0cfa9d912be46e391 (diff) | |
download | coreutils-dd03b039e8acf3060c9dc1c3f2ec005398479ee5.tar.xz |
Include <config.h>.
Otherwise, we'd lose LARGEFILE support in any file using e.g. "fcntl--.h"
Diffstat (limited to 'lib')
-rw-r--r-- | lib/open-safer.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/open-safer.c b/lib/open-safer.c index 79ce8d563..c7800a395 100644 --- a/lib/open-safer.c +++ b/lib/open-safer.c @@ -17,6 +17,10 @@ /* Written by Paul Eggert. */ +#if HAVE_CONFIG_H +# include <config.h> +#endif + #include "fcntl-safer.h" #include <fcntl.h> |