diff options
author | Jim Meyering <jim@meyering.net> | 2000-01-22 22:19:48 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-01-22 22:19:48 +0000 |
commit | 0b7e06d203178a11f3ae6fa8b840ea9b57c087a0 (patch) | |
tree | d2e76c23e5e21997e365c334e1d28e82dc6eeb81 /lib | |
parent | 968d5b2bbf9be1f2ae9c4eaa02b06be8d60f48e9 (diff) | |
download | coreutils-0b7e06d203178a11f3ae6fa8b840ea9b57c087a0.tar.xz |
[HAVE_WCTYPE_H]: Include <wctype.h>.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/quotearg.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/quotearg.c b/lib/quotearg.c index bdbb82080..722fa734d 100644 --- a/lib/quotearg.c +++ b/lib/quotearg.c @@ -58,6 +58,10 @@ # include <string.h> #endif +#if HAVE_WCTYPE_H +# include <wctype.h> +#endif + #if HAVE_MBRTOWC && HAVE_WCHAR_H # include <wchar.h> #else |