diff options
Diffstat (limited to 'sysdep/unix/endian.h')
-rw-r--r-- | sysdep/unix/endian.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sysdep/unix/endian.h b/sysdep/unix/endian.h new file mode 100644 index 0000000..58c746f --- /dev/null +++ b/sysdep/unix/endian.h @@ -0,0 +1,17 @@ +/* + * BIRD -- Endianity Conversion + * + * (c) 1999 Martin Mares <mj@ucw.cz> + * + * Can be freely distributed and used under the terms of the GNU GPL. + */ + +#ifndef _BIRD_ENDIAN_H_ +#define _BIRD_ENDIAN_H_ + +/* hton[sl] and ntoh[sl] are defined here */ + +#include <sys/types.h> +#include <netinet/in.h> + +#endif |