repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
VM: simplify slab allocator
[minix.git]
/
lib
/
libc
/
gen
/
Lint_bswap16.c
blob
2842e6f708291a59d71e25c2e812e67660207968
1
/* $NetBSD: Lint_bswap16.c,v 1.3 2001/02/27 19:04:40 cgd Exp $ */
2
/* Written by Manuel Bouyer. Public Domain */
3
4
#include <sys/types.h>
5
6
/*ARGSUSED*/
7
/*LINTED prototype mismatch */
8
u_int16_t
9
bswap16
(
b16
)
10
u_int16_t b16
;
11
{
12
return
0
;
13
}