diff options
author | Jim Meyering <jim@meyering.net> | 1993-10-21 22:08:53 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1993-10-21 22:08:53 +0000 |
commit | d1df8c198d8878b77d1d1583bc7b3c491534616a (patch) | |
tree | 716a7debdc7eb431164b5e827db0f8f71a365590 /lib | |
parent | df1e389479d422ebf9eb7a08ef3d60238776e9c9 (diff) | |
download | coreutils-d1df8c198d8878b77d1d1583bc7b3c491534616a.tar.xz |
merge with 1.8d
Diffstat (limited to 'lib')
-rw-r--r-- | lib/memchr.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/memchr.c b/lib/memchr.c index 749510636..bb8b81381 100644 --- a/lib/memchr.c +++ b/lib/memchr.c @@ -20,6 +20,17 @@ License along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifdef HAVE_CONFIG_H +#if defined (CONFIG_BROKETS) +/* We use <config.h> instead of "config.h" so that a compilation + using -I. -I$srcdir will use ./config.h rather than $srcdir/config.h + (which it would do because it found this file in $srcdir). */ +#include <config.h> +#else +#include "config.h" +#endif +#endif + /* Search no more than N bytes of S for C. */ char * |