=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/uniq/uniq.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- src/usr.bin/uniq/uniq.c 1997/01/15 23:43:28 1.3 +++ src/usr.bin/uniq/uniq.c 1997/07/25 21:05:46 1.4 @@ -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 @@ #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 @@ -252,14 +252,14 @@ exit(1); } -#if __STDC__ +#ifdef __STDC__ #include #else #include #endif void -#if __STDC__ +#ifdef __STDC__ err(const char *fmt, ...) #else err(fmt, va_alist) @@ -268,7 +268,7 @@ #endif { va_list ap; -#if __STDC__ +#ifdef __STDC__ va_start(ap, fmt); #else va_start(ap);