mirror of
https://github.com/opnsense/src.git
synced 2026-04-26 00:27:08 -04:00
Added #include <string.h> to get prototypes.
This commit is contained in:
parent
196c0ee373
commit
e7b6782c39
2 changed files with 3 additions and 1 deletions
|
|
@ -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 *
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue