29 lines
540 B
C
29 lines
540 B
C
/* $NetBSD: bswap64.c,v 1.3 1999/02/05 16:34:13 bouyer Exp $ */
|
|
|
|
/*
|
|
* Written by Manuel Bouyer <bouyer@netbsd.org>.
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
|
__RCSID("$NetBSD: bswap64.c,v 1.3 1999/02/05 16:34:13 bouyer Exp $");
|
|
#endif /* LIBC_SCCS and not lint */
|
|
|
|
#include <sys/types.h>
|
|
#include <machine/bswap.h>
|
|
|
|
#undef bswap64
|
|
|
|
u_int64_t
|
|
bswap64(x)
|
|
u_int64_t x;
|
|
{
|
|
u_int32_t *p = (u_int32_t*)(void *)&x;
|
|
u_int32_t t;
|
|
t = bswap32(p[0]);
|
|
p[0] = bswap32(p[1]);
|
|
p[1] = t;
|
|
return x;
|
|
}
|