#ifndef NAPICONFIG_H #define NAPICONFIG_H #include /* * Type definitions */ #ifdef HAVE_STDINT_H #include #else typedef signed char int8_t; typedef short int int16_t; typedef int int32_t; typedef long int64_t; typedef unsigned char uint8_t; typedef unsigned short int uint16_t; typedef unsigned int uint32_t; typedef unsigned long uint64_t; #endif /* HAVE_STDINT_H */ #endif /* NAPICONFIG_H */