]> Dogcows Code - chaz/tar/commitdiff
Include <string.h>; required for C99 since we use strlen.
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 27 Aug 2001 00:41:28 +0000 (00:41 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 27 Aug 2001 00:41:28 +0000 (00:41 +0000)
lib/prepargs.c

index d8ca5d0bf36fd46790bf1b4a1cf720448ce39b8f..2003b335033442a2808a0e95744a0e662a877273 100644 (file)
@@ -1,5 +1,5 @@
 /* Parse arguments from a string and prepend them to an argv.
-   Copyright 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1999, 2000, 2001 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
 #include <sys/types.h>
 #include <xalloc.h>
 
+#if HAVE_STRING_H
+# include <string.h>
+#endif
+
 #include <ctype.h>
 
 /* IN_CTYPE_DOMAIN (C) is nonzero if the unsigned char C can safely be given
This page took 0.026229 seconds and 4 git commands to generate.