From: Jim Meyering Date: Fri, 6 Jun 2003 21:04:15 +0000 (+0000) Subject: Include without checking for HAVE_LIMITS_H. X-Git-Tag: v5.0.1~337 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=481fd54919d0e85bd433c6d6f440e827f0c5f184;p=thirdparty%2Fcoreutils.git Include without checking for HAVE_LIMITS_H. Include unconditionally. (NULL): Don't define, since does that. --- diff --git a/lib/rpmatch.c b/lib/rpmatch.c index 02c2abdb88..7759d0ca7e 100644 --- a/lib/rpmatch.c +++ b/lib/rpmatch.c @@ -1,6 +1,6 @@ /* Determine whether string value is affirmation or negative response according to current locale's data. - Copyright (C) 1996, 1998, 2000, 2002 Free Software Foundation, Inc. + Copyright (C) 1996, 1998, 2000, 2002, 2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -20,20 +20,14 @@ # include #endif +#include #if STDC_HEADERS || _LIBC -# include # include -#else -# ifndef NULL -# define NULL 0 -# endif #endif #if ENABLE_NLS # include -# if HAVE_LIMITS_H -# include -# endif +# include # include # include "gettext.h" # define _(msgid) gettext (msgid)