summaryrefslogtreecommitdiff
path: root/lib/fnmatch.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2006-01-27 18:40:27 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2006-01-27 18:40:27 +0000
commit3585608d42307ab95969d64555a9c2f92fd90caa (patch)
tree29809dbeab7d378c54f00f8c3d510f304c403567 /lib/fnmatch.c
parent955a407e3c7dd91d6322a65747fb61403978c6a8 (diff)
downloadgnulib-3585608d42307ab95969d64555a9c2f92fd90caa.tar.gz
* fnmatch.c (L_): Renamed from L, to work around a bug in
Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>. All uses changed.
Diffstat (limited to 'lib/fnmatch.c')
-rw-r--r--lib/fnmatch.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/fnmatch.c b/lib/fnmatch.c
index 06416f6ee5..c5a4e40713 100644
--- a/lib/fnmatch.c
+++ b/lib/fnmatch.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005
+/* Copyright (C) 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006
Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
@@ -180,7 +180,7 @@ static int posixly_correct;
# define FCT internal_fnmatch
# define EXT ext_match
# define END end_pattern
-# define L(CS) CS
+# define L_(CS) CS
# ifdef _LIBC
# define BTOWC(C) __btowc (C)
# else
@@ -210,7 +210,7 @@ static int posixly_correct;
# define FCT internal_fnwmatch
# define EXT ext_wmatch
# define END end_wpattern
-# define L(CS) L##CS
+# define L_(CS) L##CS
# define BTOWC(C) (C)
# ifdef _LIBC
# define STRLEN(S) __wcslen (S)