diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-14 16:04:01 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-14 16:04:01 +0000 |
commit | 1cfb1a324798f6ed03e49813d8dfe6b28dfb9c4f (patch) | |
tree | e45051cede5e258b47718812e830748b0354ceb6 /libc/misc/fnmatch | |
parent | 6770a73cfa0feeb809434131ce019988975a41a5 (diff) |
heed compiler warnings about checking non-defined variables in #if directives
Diffstat (limited to 'libc/misc/fnmatch')
-rw-r--r-- | libc/misc/fnmatch/fnmatch_old.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/misc/fnmatch/fnmatch_old.c b/libc/misc/fnmatch/fnmatch_old.c index 839c77579..69a8ede50 100644 --- a/libc/misc/fnmatch/fnmatch_old.c +++ b/libc/misc/fnmatch/fnmatch_old.c @@ -15,7 +15,7 @@ License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H # include <config.h> #endif |