diff options
author | Roland McGrath <roland@gnu.org> | 2000-04-03 18:44:37 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2000-04-03 18:44:37 +0000 |
commit | 7b4161648941ab8ea76f2a5d3ab34e37330e35a4 (patch) | |
tree | 001327ba3fc11081a9978a83b8da4d48f043185d | |
parent | 1d63bfe8f8699d188113d9c19bb06486a07505b4 (diff) |
2000-04-03 Roland McGrath <roland@baalperazim.frob.com>
* glue-include/asm/byteorder.h: Include <hurd.h> early on,
to get the things it #include's that need __BYTE_ORDER to work.
-rw-r--r-- | pfinet/glue-include/asm/byteorder.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pfinet/glue-include/asm/byteorder.h b/pfinet/glue-include/asm/byteorder.h index ee1da1f4..a9fe66d0 100644 --- a/pfinet/glue-include/asm/byteorder.h +++ b/pfinet/glue-include/asm/byteorder.h @@ -6,6 +6,7 @@ #include <endian.h> #include <byteswap.h> +#include <hurd.h> /* gets other includes that need BYTE_ORDER */ #define BO_cvt(bits, from, to, x) \ ((from) == (to) ? (u_int##bits##_t) (x) : bswap_##bits (x)) |