File: os.h

package info (click to toggle)
unace 1.2b-26
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 452 kB
  • sloc: ansic: 1,762; sh: 116; makefile: 50
file content (28 lines) | stat: -rw-r--r-- 596 bytes parent folder | download | duplicates (13)
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
/* ------------------------------------------------------------------------ */
/*  ML - 01/2004: changed licence to GPL                                    */
/* ------------------------------------------------------------------------ */

#ifndef __os_h
#define __os_h


#if defined(AMIGA)
  #define DIRSEP '/'
  #define HI_LO_BYTE_ORDER
#endif

#if defined(DOS) || defined(WINNT) || defined(WIN16)
  #define DIRSEP '\\'
  #define LO_HI_BYTE_ORDER
#endif

#if defined(OS2)
  #define DIRSEP '\\'
  #define LO_HI_BYTE_ORDER
#endif

#if defined(UNIX)
  #define DIRSEP '/'
#endif

#endif /* __os_h */