18e01cdce135d5d816f92d7bb83f9a930aa1b45aeLucas Eckels#ifndef __SYS_TYPES_H__
2if__cplusplus)#define __SYS_TYPES_H__ 1
3charconst char *inStr);
4if__cplusplus)#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