diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-07-25 20:12:33 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-07-25 20:12:33 +0000 |
commit | 1626c644fa840e7d0e3178a0c02abb959cbb2d39 (patch) | |
tree | 6ccdff5f99d9f696c32990e7e7300e577ecb2010 /usr.sbin/pppd/main.c | |
parent | bdd29b5fbbe2dc1fb578b767909cfc64b6db403b (diff) |
#if __STDC__ --> #ifdef __STDC__
Diffstat (limited to 'usr.sbin/pppd/main.c')
-rw-r--r-- | usr.sbin/pppd/main.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/pppd/main.c b/usr.sbin/pppd/main.c index 13c793d96ad..72373bec314 100644 --- a/usr.sbin/pppd/main.c +++ b/usr.sbin/pppd/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.15 1997/03/29 04:17:22 dgregor Exp $ */ +/* $OpenBSD: main.c,v 1.16 1997/07/25 20:12:16 mickey Exp $ */ /* * main.c - Point-to-Point Protocol main module @@ -20,7 +20,7 @@ */ #ifndef lint -static char rcsid[] = "$OpenBSD: main.c,v 1.15 1997/03/29 04:17:22 dgregor Exp $"; +static char rcsid[] = "$OpenBSD: main.c,v 1.16 1997/07/25 20:12:16 mickey Exp $"; #endif #include <stdio.h> @@ -1228,7 +1228,7 @@ pr_log __V((void *arg, char *fmt, ...)) va_list pvar; char buf[256]; -#if __STDC__ +#ifdef __STDC__ va_start(pvar, fmt); #else void *arg; @@ -1314,7 +1314,7 @@ fmtmsg __V((char *buf, int buflen, char *fmt, ...)) va_list args; int n; -#if __STDC__ +#ifdef __STDC__ va_start(args, fmt); #else char *buf; |