diff options
author | Claudio Fontana <sick_soul@users.sourceforge.net> | 2006-01-11 22:13:22 +0000 |
---|---|---|
committer | Claudio Fontana <sick_soul@users.sourceforge.net> | 2006-01-11 22:13:22 +0000 |
commit | 404ea64cd4133a24615f2a9f25c2edf0c9f0090b (patch) | |
tree | 2d324d238c418493a40b7626c5c1d61c33526cd3 /lib/fnmatch.c | |
parent | cb3dbc56672211395e0da39b6a774f4e03708818 (diff) | |
download | idutils-404ea64cd4133a24615f2a9f25c2edf0c9f0090b.tar.gz idutils-404ea64cd4133a24615f2a9f25c2edf0c9f0090b.tar.bz2 idutils-404ea64cd4133a24615f2a9f25c2edf0c9f0090b.zip |
* portability fixes
Diffstat (limited to 'lib/fnmatch.c')
-rw-r--r-- | lib/fnmatch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/fnmatch.c b/lib/fnmatch.c index 06416f6..2c5b129 100644 --- a/lib/fnmatch.c +++ b/lib/fnmatch.c @@ -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) |