Make FNM_CASEFOLD !_XOPEN_SOURCE, too.

This commit is contained in:
kleink 2001-10-27 15:41:18 +00:00
parent e281efeeaa
commit b2b3ca958c

View File

@ -1,4 +1,4 @@
/* $NetBSD: fnmatch.h,v 1.7 2000/06/28 01:13:35 thorpej Exp $ */
/* $NetBSD: fnmatch.h,v 1.8 2001/10/27 15:41:18 kleink Exp $ */
/*-
* Copyright (c) 1992, 1993
@ -46,7 +46,7 @@
#define FNM_NOESCAPE 0x01 /* Disable backslash escaping. */
#define FNM_PATHNAME 0x02 /* Slash must be matched by slash. */
#define FNM_PERIOD 0x04 /* Period must be matched by period. */
#if !defined(_POSIX_C_SOURCE)
#if !defined(_POSIX_C_SOURCE) && !defined(_XOPEN_SOURCE)
#define FNM_CASEFOLD 0x08 /* Pattern is matched case-insensitive */
#endif