]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(IF_LINT): Define.
authorJim Meyering <jim@meyering.net>
Fri, 12 Aug 2005 12:41:56 +0000 (12:41 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 12 Aug 2005 12:41:56 +0000 (12:41 +0000)
lib/regex.c

index 99c1a8250683573ff085466615ed7ae45768decc..c202a8ca1136b94e5c46bb081744f1457aa78944 100644 (file)
@@ -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>.
 
 #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"