1#ifndef __SYS_TYPES_H__
2#define __SYS_TYPES_H__ 1
3
4#include <MacTypes.h>
5#include <alloca.h>
6#include <string.h>
7
8typedef short		int16_t;
9typedef long		int32_t;
10typedef long long	int64_t;
11
12#define vorbis_size32_t long
13
14
15#if defined(__cplusplus)
16extern "C" {
17#endif
18
19#pragma options align=power
20
21char *strdup(const char *inStr);
22
23#pragma options align=reset
24
25#if defined(__cplusplus)
26}
27#endif
28
29#endif /* __SYS_TYPES_H__ */
30