Fix more warnings related to missing headers

MFC after: 1 week
This commit is contained in:
Enji Cooper 2015-05-16 22:53:26 +00:00
parent d3eacc0e47
commit 5956adf2c6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=283018
2 changed files with 6 additions and 4 deletions

View File

@ -1,5 +1,6 @@
/* $FreeBSD$ */
#include <stdio.h>
#include <string.h>
int fifo(int argc, char *argv[]);
int memlock(int argc, char *argv[]);

View File

@ -1,10 +1,11 @@
#include <err.h>
#include <errno.h>
#include <unistd.h>
#include <sched.h>
#include <stdio.h>
#include <err.h>
#include <stdlib.h>
#include <sysexits.h>
#include <unistd.h>
#include "prutil.h"
/*
@ -12,7 +13,7 @@
*/
void quit(const char *text)
{
err(errno, text);
err(errno, "%s", text);
}
char *sched_text(int scheduler)