diff options
author | Jim Meyering <jim@meyering.net> | 1997-02-04 03:26:31 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1997-02-04 03:26:31 +0000 |
commit | 1235c944d20211cf23027bc58dc9f6122be86290 (patch) | |
tree | ef686f57b5aab3cc3b974571a4b002c92b700883 /lib | |
parent | 05ff9c82a63a0b868420e15a4abefd1a8a76c94d (diff) | |
download | coreutils-1235c944d20211cf23027bc58dc9f6122be86290.tar.xz |
libitize
Diffstat (limited to 'lib')
-rw-r--r-- | lib/strcspn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/strcspn.c b/lib/strcspn.c index 1e14c3779..6d0ec8523 100644 --- a/lib/strcspn.c +++ b/lib/strcspn.c @@ -14,11 +14,11 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#ifdef HAVE_CONFIG_H +#if HAVE_CONFIG_H # include <config.h> #endif -#ifdef HAVE_STRING_H +#if HAVE_STRING_H # include <string.h> #else # include <strings.h> |