diff options
Diffstat (limited to 'Build/source/texk/kpathsea/c-memstr.h')
-rw-r--r-- | Build/source/texk/kpathsea/c-memstr.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Build/source/texk/kpathsea/c-memstr.h b/Build/source/texk/kpathsea/c-memstr.h index 4f85cdf3938..2bc3d0ef696 100644 --- a/Build/source/texk/kpathsea/c-memstr.h +++ b/Build/source/texk/kpathsea/c-memstr.h @@ -1,7 +1,7 @@ /* c-memstr.h: memcpy, strchr, etc. - Copyright 1998, 1999, 2000, 2004, 2005 Olaf Weber. - Copyright 1992, 93, 94, 95, 97 Karl Berry. + Copyright 1992, 1993, 1994, 1995, 1997 1998, 1999, 2000, 2004, 2005, + 2006 Karl Berry and Olaf Weber. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -27,10 +27,12 @@ #ifdef HAVE_STRING_H #include <string.h> -#endif +#else +/* don't ever want both string.h and strings.h; fails on AIX. */ #ifdef HAVE_STRINGS_H #include <strings.h> #endif +#endif /* An ANSI string.h and pre-ANSI memory.h might conflict. */ #if !defined (STDC_HEADERS) && defined (HAVE_MEMORY_H) |