diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2015-01-14 17:27:31 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2015-01-14 17:27:31 +0000 |
commit | 0d4746936ec06236485d8677a1f7aeeb6e323542 (patch) | |
tree | eab780d614584f41fb86163a8112e1466bd8169a /usr.sbin/cron/crontab.c | |
parent | efd9b848ca6aecfd28fead1ac2633e5b2ad07852 (diff) |
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; |