| Revision 1411,
480 bytes
checked in by Freddie Akeroyd, 2 years ago
(diff) |
|
Adjust headers for OpenVMS. Refs #212
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | #ifndef NAPICONFIG_H |
|---|
| 2 | #define NAPICONFIG_H |
|---|
| 3 | |
|---|
| 4 | #ifdef _WIN32 |
|---|
| 5 | #include <windows.h> |
|---|
| 6 | #endif /* _WIN32 */ |
|---|
| 7 | |
|---|
| 8 | #ifdef __VMS |
|---|
| 9 | #include <nxconfig_vms.h> |
|---|
| 10 | #else |
|---|
| 11 | #include <nxconfig.h> |
|---|
| 12 | #endif /* __VMS */ |
|---|
| 13 | |
|---|
| 14 | |
|---|
| 15 | /* |
|---|
| 16 | * Integer type definitions |
|---|
| 17 | * |
|---|
| 18 | * int32_t etc will be defined by configure in nxconfig.h |
|---|
| 19 | * if they exist; otherwise include an appropriate header |
|---|
| 20 | */ |
|---|
| 21 | #if HAVE_STDINT_H |
|---|
| 22 | #include <stdint.h> |
|---|
| 23 | #elif HAVE_INTTYPES_H |
|---|
| 24 | #include <inttypes.h> |
|---|
| 25 | #endif /* HAVE_STDINT_H */ |
|---|
| 26 | |
|---|
| 27 | |
|---|
| 28 | #endif /* NAPICONFIG_H */ |
|---|
Note: See
TracBrowser
for help on using the repository browser.