blob: 58c746f0196a7f9397145f85615cdc572f9a2c61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|