diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-02-05 16:16:51 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-02-05 16:16:51 +0000 |
commit | 7cdd07d837af188c7d74178c8670e7eecfc9724d (patch) | |
tree | 038ebd070635fa0b28563084617106586baf44ed | |
parent | f2820ddafbd7265ce66fcbcf2d63aee68f987e01 (diff) |
no need to duplicate WCHAR check
-rw-r--r-- | include/inttypes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/inttypes.h b/include/inttypes.h index 6ae329537..b1d4302a2 100644 --- a/include/inttypes.h +++ b/include/inttypes.h @@ -27,7 +27,7 @@ /* Get the type definitions. */ #include <stdint.h> -#if defined __UCLIBC_HAS_WCHAR__ && __UCLIBC_HAS_WCHAR__ +#ifdef __UCLIBC_HAS_WCHAR__ /* Get a definition for wchar_t. But we must not define wchar_t itself. */ #ifndef ____gwchar_t_defined # ifdef __cplusplus |