summaryrefslogtreecommitdiff
path: root/usr.bin/uniq
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1997-07-25 21:05:47 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1997-07-25 21:05:47 +0000
commitdac2e5bb3990fd05a5027fc01a8f9c0b59895523 (patch)
tree32ab5e771b0ce146934c9462a6bbb409e4fa4390 /usr.bin/uniq
parentec5d2ebad5e3102a055932148dd103272602b53b (diff)
#if __STDC__ --> #ifdef __STDC__
Diffstat (limited to 'usr.bin/uniq')
-rw-r--r--usr.bin/uniq/uniq.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/uniq/uniq.c b/usr.bin/uniq/uniq.c
index 895b0f06a7e..440d3bd5850 100644
--- a/usr.bin/uniq/uniq.c
+++ b/usr.bin/uniq/uniq.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uniq.c,v 1.3 1997/01/15 23:43:28 millert Exp $ */
+/* $OpenBSD: uniq.c,v 1.4 1997/07/25 21:05:46 mickey Exp $ */
/* $NetBSD: uniq.c,v 1.7 1995/08/31 22:03:48 jtc Exp $ */
/*
@@ -47,7 +47,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)uniq.c 8.3 (Berkeley) 5/4/95";
#endif
-static char rcsid[] = "$OpenBSD: uniq.c,v 1.3 1997/01/15 23:43:28 millert Exp $";
+static char rcsid[] = "$OpenBSD: uniq.c,v 1.4 1997/07/25 21:05:46 mickey Exp $";
#endif /* not lint */
#include <errno.h>
@@ -252,14 +252,14 @@ usage()
exit(1);
}
-#if __STDC__
+#ifdef __STDC__
#include <stdarg.h>
#else
#include <varargs.h>
#endif
void
-#if __STDC__
+#ifdef __STDC__
err(const char *fmt, ...)
#else
err(fmt, va_alist)
@@ -268,7 +268,7 @@ err(fmt, va_alist)
#endif
{
va_list ap;
-#if __STDC__
+#ifdef __STDC__
va_start(ap, fmt);
#else
va_start(ap);