Added #include <string.h> to get prototypes.

This commit is contained in:
John Birrell 1998-03-09 06:51:23 +00:00
parent 196c0ee373
commit e7b6782c39
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=34380
2 changed files with 3 additions and 1 deletions

View File

@ -43,6 +43,7 @@ static char sccsid[] = "@(#)tmpfile.c 8.1 (Berkeley) 6/4/93";
#include <unistd.h>
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <paths.h>
FILE *

View File

@ -24,11 +24,12 @@
*/
#if defined(LIBC_RCS) && !defined(lint)
static char rcsid[] = "$Id: vasprintf.c,v 1.6 1997/07/06 07:54:56 peter Exp $";
static char rcsid[] = "$Id: vasprintf.c,v 1.7 1997/07/06 08:42:37 peter Exp $";
#endif /* LIBC_RCS and not lint */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#if __STDC__
#include <stdarg.h>