diff options
author | Jim Meyering <jim@meyering.net> | 2004-01-16 10:06:48 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2004-01-16 10:06:48 +0000 |
commit | 35a86d71749fecef77470147310f34a13c40e055 (patch) | |
tree | ab1b597fec9828f57186e5aea5ddd62818e6d1f7 /lib | |
parent | e8770d98edd3c3d6f4b990359307de5a102c856b (diff) | |
download | coreutils-35a86d71749fecef77470147310f34a13c40e055.tar.xz |
Test HAVE_DECL_GETC_UNLOCKED, rather than HAVE_GETC_UNLOCKED.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/localcharset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/localcharset.c b/lib/localcharset.c index eb5563df4..5b146e795 100644 --- a/lib/localcharset.c +++ b/lib/localcharset.c @@ -85,7 +85,7 @@ # define ISSLASH(C) ((C) == DIRECTORY_SEPARATOR) #endif -#ifdef HAVE_GETC_UNLOCKED +#if HAVE_DECL_GETC_UNLOCKED # undef getc # define getc getc_unlocked #endif |