summaryrefslogtreecommitdiff
path: root/libexec/mail.local/mail.local.c
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1997-07-25 19:41:21 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1997-07-25 19:41:21 +0000
commit1c0190bf65ffb0a018ad7621c5494bd94d0f1f95 (patch)
treec905e15dd9dd46e02df594f821082846e0fb114d /libexec/mail.local/mail.local.c
parenta57a2f8a05e5ecb420666be177391e7b1592337d (diff)
#if __STDC__ --> #ifdef __STDC__
Diffstat (limited to 'libexec/mail.local/mail.local.c')
-rw-r--r--libexec/mail.local/mail.local.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libexec/mail.local/mail.local.c b/libexec/mail.local/mail.local.c
index e216ba3ed83..b4af745df8f 100644
--- a/libexec/mail.local/mail.local.c
+++ b/libexec/mail.local/mail.local.c
@@ -39,7 +39,7 @@ char copyright[] =
#ifndef lint
/*static char sccsid[] = "from: @(#)mail.local.c 5.6 (Berkeley) 6/19/91";*/
-static char rcsid[] = "$Id: mail.local.c,v 1.15 1997/04/04 18:41:27 deraadt Exp $";
+static char rcsid[] = "$Id: mail.local.c,v 1.16 1997/07/25 19:41:18 mickey Exp $";
#endif /* not lint */
#include <sys/param.h>
@@ -495,14 +495,14 @@ usage()
err(FATAL, "usage: mail.local [-lLH] [-f from] user ...");
}
-#if __STDC__
+#ifdef __STDC__
#include <stdarg.h>
#else
#include <varargs.h>
#endif
void
-#if __STDC__
+#ifdef __STDC__
err(int isfatal, const char *fmt, ...)
#else
err(isfatal, fmt)
@@ -512,7 +512,7 @@ err(isfatal, fmt)
#endif
{
va_list ap;
-#if __STDC__
+#ifdef __STDC__
va_start(ap, fmt);
#else
va_start(ap);