Include <string.h> for prototypes of various string functions.

Approved by:	das (mentor)
This commit is contained in:
Stefan Farfeleder 2004-05-24 12:44:00 +00:00
parent d7d197e0f9
commit 8b061e144e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=129657
5 changed files with 8 additions and 0 deletions

View File

@ -49,6 +49,8 @@ __FBSDID("$FreeBSD$");
#include <err.h>
#include <limits.h>
#include <stdint.h>
#include <string.h>
#include "gprof.h"
static int valcmp(const void *, const void *);

View File

@ -8,6 +8,7 @@ __FBSDID("$FreeBSD$");
#include <err.h>
#include <stdlib.h>
#include <string.h>
#include "gprof.h"

View File

@ -41,6 +41,8 @@ static char sccsid[] = "@(#)printgprof.c 8.1 (Berkeley) 6/6/93";
__FBSDID("$FreeBSD$");
#include <err.h>
#include <string.h>
#include "gprof.h"
#include "pathnames.h"

View File

@ -41,6 +41,8 @@ static char sccsid[] = "@(#)printlist.c 8.1 (Berkeley) 6/6/93";
__FBSDID("$FreeBSD$");
#include <err.h>
#include <string.h>
#include "gprof.h"
/*

View File

@ -31,6 +31,7 @@
#include <stddef.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <err.h>
#include <sysexits.h>