diff options
author | Moritz Jodeit <moritz@cvs.openbsd.org> | 2007-05-15 19:42:06 +0000 |
---|---|---|
committer | Moritz Jodeit <moritz@cvs.openbsd.org> | 2007-05-15 19:42:06 +0000 |
commit | 411c924837277917adc0e6333223ae43187d4f16 (patch) | |
tree | b73d45176e15af75c506a06b0f51bdd7113153b7 /usr.bin/tip/cu.c | |
parent | b20a27a5d8705aab699f34d88e11460c2f5794f7 (diff) |
Remove useless NOxxx defines and use NULL instead.
No binary change.
OK ray@
Diffstat (limited to 'usr.bin/tip/cu.c')
-rw-r--r-- | usr.bin/tip/cu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tip/cu.c b/usr.bin/tip/cu.c index e5dbd97a8a2..2ad7cb59da9 100644 --- a/usr.bin/tip/cu.c +++ b/usr.bin/tip/cu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cu.c,v 1.21 2006/11/07 07:16:15 ray Exp $ */ +/* $OpenBSD: cu.c,v 1.22 2007/05/15 19:42:05 moritz Exp $ */ /* $NetBSD: cu.c,v 1.5 1997/02/11 09:24:05 mrg Exp $ */ /* @@ -34,7 +34,7 @@ #if 0 static char sccsid[] = "@(#)cu.c 8.1 (Berkeley) 6/6/93"; #endif -static const char rcsid[] = "$OpenBSD: cu.c,v 1.21 2006/11/07 07:16:15 ray Exp $"; +static const char rcsid[] = "$OpenBSD: cu.c,v 1.22 2007/05/15 19:42:05 moritz Exp $"; #endif /* not lint */ #include <err.h> @@ -56,7 +56,7 @@ cumain(int argc, char *argv[]) if (argc < 2) cuusage(); - CU = DV = NOSTR; + CU = DV = NULL; BR = DEFBR; parity = 0; /* none */ |