]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Include <stdlib.h>, <string.h> unconditionally.
authorJim Meyering <jim@meyering.net>
Wed, 10 Sep 2003 08:29:47 +0000 (08:29 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 10 Sep 2003 08:29:47 +0000 (08:29 +0000)
lib/canon-host.c

index d2d0746c7f8b020d27e5c2fb066cc4ddfd656a93..b0c2f44bb1a3e92cf4196514efa49011d2730eec 100644 (file)
@@ -1,6 +1,6 @@
 /* Host name canonicalization
 
-   Copyright (C) 1995, 1999, 2000, 2002 Free Software Foundation, Inc.
+   Copyright (C) 1995, 1999, 2000, 2002, 2003 Free Software Foundation, Inc.
 
    Written by Miles Bader <miles@gnu.ai.mit.edu>
 
 #ifdef HAVE_UNISTD_H
 # include <unistd.h>
 #endif
-#ifdef HAVE_STDLIB_H
-# include <stdlib.h>
-#endif
-#ifdef HAVE_STRING_H
-# include <string.h>
-#endif
+#include <stdlib.h>
+#include <string.h>
 #ifdef HAVE_NETDB_H
 # include <netdb.h>
 #endif