From ad27efe0c0c077dd449e10cf6c0e155b98e8d613 Mon Sep 17 00:00:00 2001 From: mickey <> Date: Fri, 25 Jul 1997 20:30:14 +0000 Subject: #if __STDC__ --> #ifdef __STDC__ --- src/lib/libc/net/htons.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/libc/net/htons.c') diff --git a/src/lib/libc/net/htons.c b/src/lib/libc/net/htons.c index e647d8c91e..47cf25952d 100644 --- a/src/lib/libc/net/htons.c +++ b/src/lib/libc/net/htons.c @@ -4,7 +4,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: htons.c,v 1.5 1996/12/12 03:19:55 tholo Exp $"; +static char *rcsid = "$OpenBSD: htons.c,v 1.6 1997/07/25 20:30:07 mickey Exp $"; #endif /* LIBC_SCCS and not lint */ #include @@ -13,7 +13,7 @@ static char *rcsid = "$OpenBSD: htons.c,v 1.5 1996/12/12 03:19:55 tholo Exp $"; #undef htons u_int16_t -#if __STDC__ +#ifdef __STDC__ htons(u_int16_t x) #else htons(x) -- cgit v1.2.3-55-g6feb