diff options
author | Jim Meyering <jim@meyering.net> | 1995-10-18 15:57:50 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1995-10-18 15:57:50 +0000 |
commit | 1cde2ceb5c9404088c7be73dc1438b774a7709c4 (patch) | |
tree | 65e34b963e7ec3c471e1b74a3767b723fba562e7 | |
parent | 539457f1ae28a703c72a60eb4d59b09af552f27e (diff) | |
download | coreutils-1cde2ceb5c9404088c7be73dc1438b774a7709c4.tar.xz |
Use _POSIX_VERSION, not _POSIX_SOURCE.
-rw-r--r-- | lib/fileblocks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fileblocks.c b/lib/fileblocks.c index 83ac04fd6..e85bf17bc 100644 --- a/lib/fileblocks.c +++ b/lib/fileblocks.c @@ -21,7 +21,7 @@ #include <config.h> #endif -#if !defined (HAVE_ST_BLOCKS) && !defined(_POSIX_SOURCE) +#if !defined (HAVE_ST_BLOCKS) && !defined(_POSIX_VERSION) #include <sys/types.h> #include <sys/param.h> |