diff options
author | 2015-01-14 17:27:29 +0000 | |
---|---|---|
committer | 2015-01-14 17:27:29 +0000 | |
commit | afc409ec364044f2ade1b2ae2472863c722df240 (patch) | |
tree | fa4fdfc8228c7b32806d0755c6126470a8149f10 /usr.sbin/cron/crontab.c | |
parent | Remove compatibility defines for ancient systems. We assume a (diff) | |
download | wireguard-openbsd-afc409ec364044f2ade1b2ae2472863c722df240.tar.xz wireguard-openbsd-afc409ec364044f2ade1b2ae2472863c722df240.zip |
Use standard types for wait, readdir, signals and pids.
Diffstat (limited to 'usr.sbin/cron/crontab.c')
-rw-r--r-- | usr.sbin/cron/crontab.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/cron/crontab.c b/usr.sbin/cron/crontab.c index 9f069ce135e..7d01f0b2315 100644 --- a/usr.sbin/cron/crontab.c +++ b/usr.sbin/cron/crontab.c @@ -1,4 +1,4 @@ -/* $OpenBSD: crontab.c,v 1.66 2015/01/14 17:27:13 millert Exp $ */ +/* $OpenBSD: crontab.c,v 1.67 2015/01/14 17:27:29 millert Exp $ */ /* Copyright 1988,1990,1993,1994 by Paul Vixie * All rights reserved @@ -43,7 +43,7 @@ static char *getoptargs = "u:lerx:"; static char *getoptargs = "u:ler"; #endif -static PID_T Pid; +static pid_t Pid; static char User[MAX_UNAME], RealUser[MAX_UNAME]; static char Filename[MAX_FNAME], TempFilename[MAX_FNAME]; static FILE *NewCrontab; |