xref: /netbsd-src/lib/libc/gen/Lint_bswap32.c (revision 4472dbe5e3bd91ef2540bada7a7ca7384627ff9b)
1 /*      $NetBSD: */
2 /* Written by Manuel Bouyer. Public Domain */
3 
4 #include <sys/types.h>
5 
6 /*ARGSUSED*/
7 u_int32_t
8 bswap32(b32)
9 	u_int32_t b32;
10 {
11 	return 0;
12 }
13