diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2003-09-21 18:11:28 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2003-09-21 18:11:28 +0000 |
commit | 5e92f8fbdbb74581c4731f6e7e61a9a51d7add8c (patch) | |
tree | accf7bb981f1df07dd9551bf223b851ee1c2e284 /sys | |
parent | 8ed1c28a17270176f6121323b0fc94992ad41545 (diff) |
revert for now.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/endian.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/sys/endian.h b/sys/sys/endian.h index ea1213d4c65..78d2d5d6906 100644 --- a/sys/sys/endian.h +++ b/sys/sys/endian.h @@ -1,4 +1,4 @@ -/* $OpenBSD: endian.h,v 1.11 2003/09/21 10:50:15 fgsch Exp $ */ +/* $OpenBSD: endian.h,v 1.12 2003/09/21 18:11:26 fgsch Exp $ */ /*- * Copyright (c) 1997 Niklas Hallqvist. All rights reserved. @@ -150,17 +150,13 @@ } while (0) __BEGIN_DECLS -u_int64_t htobe64(u_int64_t); u_int32_t htobe32(u_int32_t); u_int16_t htobe16(u_int16_t); -u_int64_t betoh64(u_int64_t); u_int32_t betoh32(u_int32_t); u_int16_t betoh16(u_int16_t); -u_int64_t htole64(u_int64_t); u_int32_t htole32(u_int32_t); u_int16_t htole16(u_int16_t); -u_int64_t letoh64(u_int64_t); u_int32_t letoh32(u_int32_t); u_int16_t letoh16(u_int16_t); __END_DECLS |