Newer
Older
NetAddr-IP / Lite / Util / localconf.h
@Michael Robinton Michael Robinton on 21 Oct 2014 355 bytes Import of MIKER/NetAddr-IP-4.013 from CPAN.
/*
 *	localconf.h
 *
 */

#ifdef WORDS_BIGENDIAN
#define host_is_BIG_ENDIAN 1
#else
#define host_is_LITTLE_ENDIAN 1
#endif

#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif

#ifndef SIZEOF_U_INT8_T
typedef uint8_t u_int8_t
#endif

#ifndef SIZEOF_U_INT16_T
typedef uint16_t u_int16_t
#endif

#ifndef SIZEOF_U_INT32_T
typedef uint32_t u_int32_t
#endif