File size: 525 Bytes
5610573 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | /**
* Define basic types in case there is no <stdint.h>
*/
#ifndef __RTC_BASE_TYPEDEFS_H__
#define __RTC_BASE_TYPEDEFS_H__
#include <pocketsphinx/sphinx_config.h>
#include <pocketsphinx/prim_type.h>
#ifndef HAVE_STDINT_H
typedef int32 int32_t;
typedef int16 int16_t;
typedef int8 int8_t;
typedef uint32 uint32_t;
typedef uint16 uint16_t;
typedef uint8 uint8_t;
typedef int64 int64_t;
typedef uint64 uint64_t;
#define INT32_MAX MAX_INT32
#define INT32_MIN MIN_INT32
#endif
#endif /* __RTC_BASE_TYPEDEFS_H__ */
|