From fdaa1ce8492c4c878e5a65fd0925f1c2d3c95d3d Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 12 Aug 2005 12:41:56 +0000 Subject: (IF_LINT): Define. --- lib/regex.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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 . @@ -82,6 +82,12 @@ #include #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" -- cgit v1.2.3-54-g00ecf