summaryrefslogtreecommitdiffstats
path: root/usr.sbin/cron/popen.c
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2002-01-09 00:51:00 +0000
committermillert <millert@openbsd.org>2002-01-09 00:51:00 +0000
commitd5919ef3d78d2f79ed0d70fb463d09d201b8d9bc (patch)
treedcb2d4569af39c647f630ea07e48716d02db4478 /usr.sbin/cron/popen.c
parentPut explicit register qualifiers into the inlines, so that they work correctly (diff)
downloadwireguard-openbsd-d5919ef3d78d2f79ed0d70fb463d09d201b8d9bc.tar.xz
wireguard-openbsd-d5919ef3d78d2f79ed0d70fb463d09d201b8d9bc.zip
Kill volatile now that jongjmp is history.
Diffstat (limited to 'usr.sbin/cron/popen.c')
-rw-r--r--usr.sbin/cron/popen.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/cron/popen.c b/usr.sbin/cron/popen.c
index 2e922a11067..3a5722face1 100644
--- a/usr.sbin/cron/popen.c
+++ b/usr.sbin/cron/popen.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: popen.c,v 1.12 2001/10/24 17:28:16 millert Exp $ */
+/* $OpenBSD: popen.c,v 1.13 2002/01/09 00:51:00 millert Exp $ */
/*
* Copyright (c) 1988, 1993, 1994
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)popen.c 8.3 (Berkeley) 4/6/94";
#else
-static char rcsid[] = "$OpenBSD: popen.c,v 1.12 2001/10/24 17:28:16 millert Exp $";
+static char rcsid[] = "$OpenBSD: popen.c,v 1.13 2002/01/09 00:51:00 millert Exp $";
#endif
#endif /* not lint */
@@ -63,7 +63,7 @@ cron_popen(program, type, e)
entry *e;
{
char *cp;
- FILE * volatile iop;
+ FILE *iop;
int argc, pdes[2];
PID_T pid;
char *argv[MAX_ARGV];