Explorar o código

Include <string.h>; required for C99 since we use strlen.

Paul Eggert %!s(int64=23) %!d(string=hai) anos
pai
achega
255c8a9880
Modificáronse 1 ficheiros con 5 adicións e 1 borrados
  1. 5 1
      lib/prepargs.c

+ 5 - 1
lib/prepargs.c

@@ -1,5 +1,5 @@
 /* Parse arguments from a string and prepend them to an argv.
 /* 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
    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
    it under the terms of the GNU General Public License as published by
@@ -25,6 +25,10 @@
 #include <sys/types.h>
 #include <sys/types.h>
 #include <xalloc.h>
 #include <xalloc.h>
 
 
+#if HAVE_STRING_H
+# include <string.h>
+#endif
+
 #include <ctype.h>
 #include <ctype.h>
 
 
 /* IN_CTYPE_DOMAIN (C) is nonzero if the unsigned char C can safely be given
 /* IN_CTYPE_DOMAIN (C) is nonzero if the unsigned char C can safely be given