Include unistd.h for read(), write() and stdlib.h for exit().

Bump WARNS to 5 while being here.
This commit is contained in:
Wojciech A. Koszek 2010-01-18 23:13:22 +00:00
parent d632071e0e
commit 12a91a4387
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=202603
2 changed files with 6 additions and 3 deletions

View File

@ -68,6 +68,7 @@
#
PROG= testcdev
NO_MAN=
WARNS= 5
MODSTAT= /sbin/kldstat

View File

@ -70,13 +70,15 @@
*
* $FreeBSD$
*/
#include <sys/types.h>
#include <sys/ioccom.h>
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <paths.h>
#include <string.h>
#include <sys/types.h>
#include <sys/ioccom.h>
#include <unistd.h>
#define CDEV_IOCTL1 _IOR('C', 1, u_int)
#define CDEV_DEVICE "cdev"
@ -85,7 +87,7 @@ static char writestr[] = "Hello kernel!";
static char buf[512+1];
int
main(int argc, char *argv[])
main(int argc __unused, char *argv[] __unused)
{
int kernel_fd;
int one;