minix/lib/nbsd_libc/gen/Lint_bswap16.c
Gianluca Guida b6cbf7203b Import unmodified NetBSD libc in trunk
This patch imports the unmodified current version of NetBSD libc.
The NetBSD includes are in /nbsd_include, while the libc code itself is 
split between lib/nbsd_libc and common/lib/libc.
2011-02-14 19:36:03 +00:00

14 lines
235 B
C

/* $NetBSD: Lint_bswap16.c,v 1.3 2001/02/27 19:04:40 cgd Exp $ */
/* Written by Manuel Bouyer. Public Domain */
#include <sys/types.h>
/*ARGSUSED*/
/*LINTED prototype mismatch */
u_int16_t
bswap16(b16)
u_int16_t b16;
{
return 0;
}