diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/regex.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/regex.c b/lib/regex.c index 99c1a8250..c202a8ca1 100644 --- a/lib/regex.c +++ b/lib/regex.c @@ -1,5 +1,5 @@ /* Extended regular expression matching and search library. - Copyright (C) 2002, 2003 Free Software Foundation, Inc. + Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>. @@ -82,6 +82,12 @@ #include <regex.h> #include "regex_internal.h" +#ifdef lint +# define IF_LINT(Code) Code +#else +# define IF_LINT(Code) /* empty */ +#endif + #include "regex_internal.c" #include "regcomp.c" #include "regexec.c" |