diff options
author | Ron <ron@debian.org> | 2009-06-27 04:44:21 +0930 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-07-05 20:27:17 -0400 |
commit | 11a52734e42237bac70a1f4a3ae2ef7e9f751bc4 (patch) | |
tree | 7015b49ac8e9b29a733506e470529dacad97d953 /libc/misc/fnmatch | |
parent | 00c8ece258acfa8867485172af9e74313d25bbdf (diff) | |
download | uClibc-alpine-11a52734e42237bac70a1f4a3ae2ef7e9f751bc4.tar.bz2 uClibc-alpine-11a52734e42237bac70a1f4a3ae2ef7e9f751bc4.tar.xz |
Check #if feature test macros are defined where they may not be
Once again all of these reduce the noise from gcc-4.4.
Replaces a few more (USE_TLS && HAVE___THREAD) with USE___THREAD while we need
to mess with them for this anyhow.
Signed-off-by: Ron Lee <ron@debian.org>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'libc/misc/fnmatch')
-rw-r--r-- | libc/misc/fnmatch/fnmatch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/misc/fnmatch/fnmatch.c b/libc/misc/fnmatch/fnmatch.c index ed86fe861..441671755 100644 --- a/libc/misc/fnmatch/fnmatch.c +++ b/libc/misc/fnmatch/fnmatch.c @@ -17,7 +17,7 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H # include <config.h> #endif |