-
Notifications
You must be signed in to change notification settings - Fork 0
/
platform.h
71 lines (59 loc) · 1.08 KB
/
platform.h
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/* Copyright (c) 2002-2015, Ross Smith II. MIT licensed. */
#ifndef IS_UNIX
# if defined(__NetBSD__)
# define IS_UNIX 1
# endif
#endif
#ifndef IS_UNIX
# if (defined(unix) || defined(__unix) || defined(__unix__)) && !defined(__DJGPP__)
# define IS_UNIX 1
# endif
#endif
/* Atari */
#if defined(tos) || defined(__tos)
# define IS_TOS 1
#endif
#ifdef __BEOS__
# ifndef IS_UNIX
# define IS_UNIX 1
# endif
#endif
#if defined(__linux__) || defined(__linux)
# ifndef IS_UNIX
# define IS_UNIX 1
# endif
#endif
#ifdef THINK_C
# define IS_MAC 1
#endif
#if defined(__APPLE__)
# define IS_MAC 1
# if defined(__MACH__)
# ifndef IS_UNIX
# define IS_UNIX 1
# endif
# define IS_MACOS_X 1
#endif
#endif
#if defined(__CYGWIN32__) || defined(__CYGWIN__)
# define IS_CYGWIN 1
#endif
/* OS/2 EMX */
#ifdef __EMX__
# ifndef IS_UNIX
# define IS_UNIX 1
# endif
#endif
#if defined(_IBMR2) || defined(_AIX)
# ifndef IS_UNIX
# define IS_UNIX 1
# endif
#endif
#if defined(__QNX__)
# ifndef IS_UNIX
# define IS_UNIX 1
# endif
#endif
#if defined(sun) || defined(__sun) || defined(__sun__)
# define IS_SUN 1
#endif