diff options
author | 2007-11-24 19:25:02 +0000 | |
---|---|---|
committer | 2007-11-24 19:25:02 +0000 | |
commit | ba95abb506c535ebbbcb620620bf22e9935c137b (patch) | |
tree | 6761f3f26558608032b3ae4095a06dc41d96a1ae /sys/lib/libkern/htons.c | |
parent | new sentence, new line; (diff) | |
download | wireguard-openbsd-ba95abb506c535ebbbcb620620bf22e9935c137b.tar.xz wireguard-openbsd-ba95abb506c535ebbbcb620620bf22e9935c137b.zip |
ansi C
Diffstat (limited to 'sys/lib/libkern/htons.c')
-rw-r--r-- | sys/lib/libkern/htons.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/lib/libkern/htons.c b/sys/lib/libkern/htons.c index 9a8d4053cf7..47ffe694094 100644 --- a/sys/lib/libkern/htons.c +++ b/sys/lib/libkern/htons.c @@ -4,7 +4,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: htons.c,v 1.5 2004/11/28 07:23:41 mickey Exp $"; +static char *rcsid = "$OpenBSD: htons.c,v 1.6 2007/11/24 19:25:02 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> @@ -12,6 +12,8 @@ static char *rcsid = "$OpenBSD: htons.c,v 1.5 2004/11/28 07:23:41 mickey Exp $"; #undef htons +u_int16_t htons(u_int16_t); + u_int16_t htons(u_int16_t x) { |