]>
Commit | Line | Data |
---|---|---|
f6bcfd97 BP |
1 | #ifndef __os_h |
2 | #define __os_h | |
3 | ||
4 | ||
5 | #if defined(AMIGA) | |
6 | #define DIRSEP '/' | |
7 | #define HI_LO_BYTE_ORDER | |
8 | #endif | |
9 | ||
10 | #if defined(DOS) || defined(WINNT) || defined(WIN16) | |
11 | #define DIRSEP '\\' | |
12 | #define LO_HI_BYTE_ORDER | |
13 | #endif | |
14 | ||
15 | #if defined(OS2) || defined(__EMX__) | |
16 | #define DIRSEP '\\' | |
17 | #define LO_HI_BYTE_ORDER | |
18 | #endif | |
19 | ||
20 | #if defined(UNIX) | |
21 | #define DIRSEP '/' | |
22 | #define HI_LO_BYTE_ORDER | |
23 | #endif | |
24 | ||
25 | ||
26 | #endif /* __os_h */ |