summaryrefslogtreecommitdiff
path: root/PACE/pace/sys/types.h
blob: e668be409d7974a80a7af5a90137c7358077b691 (plain)
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
27
28
29
30
31
32
33
34
35
36
37
/* $Id$

 * ============================================================================
 *
 * = LIBRARY
 *    pace
 *
 * = FILENAME
 *    pace/sys/types.h
 *
 * = AUTHOR
 *    Luther Baker
 *
 * ============================================================================ */

#ifndef PACE_SYS_TYPES_H
#define PACE_SYS_TYPES_H

#include "pace/config/defines.h"

#if (PACE_HAS_POSIX)
# include "pace/posix/types.h"
#elif (PACE_VXWORKS)
# include "pace/vxworks/types.h"
#elif (PACE_WIN32)
# include "pace/win32/types.h"
#endif

#if defined (PACE_HAS_CPLUSPLUS)
extern "C" {
#endif /* PACE_HAS_CPLUSPLUS */

#if defined (PACE_HAS_CPLUSPLUS)
}
#endif /* PACE_HAS_CPLUSPLUS */

#endif /* PACE_SYS_TYPES_H */