summaryrefslogtreecommitdiff
path: root/PACE/pace/errno.h
blob: ae4f6bd43446139d32c6ebddaa67a9d03dd41796 (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/errno.h
 *
 * = AUTHOR
 *    Luther Baker
 *
 * ============================================================================ */

#ifndef PACE_ERRNO_H
#define PACE_ERRNO_H

#include "pace/config/defines.h"

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

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

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

#endif /* PACE_ERRNO_H */