missing <sys/stat.h> include.

bouyer-socketcan
christos 2017-01-10 20:29:48 +00:00
parent 4ad16b3e7c
commit 2c1d98b710
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: atrun.c,v 1.22 2016/03/13 00:32:09 dholland Exp $ */
/* $NetBSD: atrun.c,v 1.23 2017/01/10 20:29:48 christos Exp $ */
/*
* atrun.c - run jobs queued by at; run with root privileges.
@ -28,6 +28,7 @@
/* System Headers */
#include <sys/cdefs.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <ctype.h>
@ -58,7 +59,7 @@
#if 0
static char rcsid[] = "$OpenBSD: atrun.c,v 1.7 1997/09/08 22:12:10 millert Exp $";
#else
__RCSID("$NetBSD: atrun.c,v 1.22 2016/03/13 00:32:09 dholland Exp $");
__RCSID("$NetBSD: atrun.c,v 1.23 2017/01/10 20:29:48 christos Exp $");
#endif
static int debug = 0;