blob: 686416a3deae8e378a02610886476259db805c7f [file] [log] [blame]
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -08001#ifndef _HOST_DEFS_H
2#define _HOST_DEFS_H
3
4/* all host-specific definitions should go here */
5
6#include "config-host.h"
7#include <stdint.h>
8
9#if HOST_LONG_BITS == 32
10typedef int32_t host_long;
11typedef uint32_t host_ulong;
12#elif HOST_LONG_BITS == 64
13typedef int64_t host_long;
14typedef uint64_t host_ulong;
15#endif
16
17#endif /* _HOST_DEFS_H */
18