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_bswap64.c
blob
77286d77d0c48f93730b684ba200078f0bc8eada
1
/* $NetBSD: Lint_bswap64.c,v 1.2 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
u_int64_t
8
bswap64
(
b64
)
9
u_int64_t b64
;
10
{
11
return
0
;
12
}