68cd2cc8eff901312f045fca8995bba6b08281f6
[oweals/busybox.git] / include / platform.h
1 /* vi: set sw=4 ts=4: */
2 /*
3    Copyright 2006, Bernhard Fischer
4
5    Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
6 */
7 #ifndef __PLATFORM_H
8 #define __PLATFORM_H    1
9
10 /* Convenience macros to test the version of gcc. */
11 #undef __GNUC_PREREQ
12 #if defined __GNUC__ && defined __GNUC_MINOR__
13 # define __GNUC_PREREQ(maj, min) \
14                 ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
15 #else
16 # define __GNUC_PREREQ(maj, min) 0
17 #endif
18
19 /* __restrict is known in EGCS 1.2 and above. */
20 #if !__GNUC_PREREQ (2,92)
21 # ifndef __restrict
22 #  define __restrict     /* Ignore */
23 # endif
24 #endif
25
26 /* Define macros for some gcc attributes.  This permits us to use the
27    macros freely, and know that they will come into play for the
28    version of gcc in which they are supported.  */
29
30 #if !__GNUC_PREREQ (2,7)
31 # ifndef __attribute__
32 #  define __attribute__(x)
33 # endif
34 #endif
35
36 #undef inline
37 #if __STDC_VERSION__ > 199901L
38 /* it's a keyword */
39 #else
40 # if __GNUC_PREREQ (2,7)
41 #  define inline __inline__
42 # else
43 #  define inline
44 # endif
45 #endif
46
47 #ifndef __const
48 # define __const const
49 #endif
50
51 #ifndef __THROW
52 # define __THROW
53 #endif
54
55
56 #ifndef ATTRIBUTE_UNUSED
57 # define ATTRIBUTE_UNUSED __attribute__ ((__unused__))
58 #endif /* ATTRIBUTE_UNUSED */
59
60 #ifndef ATTRIBUTE_NORETURN
61 # define ATTRIBUTE_NORETURN __attribute__ ((__noreturn__))
62 #endif /* ATTRIBUTE_NORETURN */
63
64 #ifndef ATTRIBUTE_PACKED
65 # define ATTRIBUTE_PACKED __attribute__ ((__packed__))
66 #endif /* ATTRIBUTE_PACKED */
67
68 #ifndef ATTRIBUTE_ALIGNED
69 # define ATTRIBUTE_ALIGNED(m) __attribute__ ((__aligned__(m)))
70 #endif /* ATTRIBUTE_ALIGNED */
71
72 #ifndef ATTRIBUTE_ALWAYS_INLINE
73 # if __GNUC_PREREQ (3,0)
74 #  define ATTRIBUTE_ALWAYS_INLINE __attribute__ ((always_inline)) inline
75 # else
76 #  define ATTRIBUTE_ALWAYS_INLINE inline
77 # endif
78 #endif
79
80 /* -fwhole-program makes all symbols local. The attribute externally_visible
81    forces a symbol global.  */
82 #ifndef ATTRIBUTE_EXTERNALLY_VISIBLE
83 # if __GNUC_PREREQ (4,1)
84 #  define ATTRIBUTE_EXTERNALLY_VISIBLE __attribute__ ((__externally_visible__))
85 # else
86 #  define ATTRIBUTE_EXTERNALLY_VISIBLE
87 # endif /* GNUC >= 4.1 */
88 #endif /* ATTRIBUTE_EXTERNALLY_VISIBLE */
89
90 /* We use __extension__ in some places to suppress -pedantic warnings
91    about GCC extensions.  This feature didn't work properly before
92    gcc 2.8.  */
93 #if !__GNUC_PREREQ (2,8)
94 # ifndef __extension__
95 #  define __extension__
96 # endif
97 #endif
98
99 /* ---- Endian Detection ------------------------------------ */
100 #if !defined __APPLE__ && !(defined __digital__ && defined __unix__)
101 # include <byteswap.h>
102 # include <endian.h>
103 #endif
104
105 #if (defined __digital__ && defined __unix__)
106 # include <sex.h>
107 # define __BIG_ENDIAN__ (BYTE_ORDER == BIG_ENDIAN)
108 # define __BYTE_ORDER BYTE_ORDER
109 #endif
110
111
112 #ifdef __BIG_ENDIAN__
113 # define BB_BIG_ENDIAN 1
114 # define BB_LITTLE_ENDIAN 0
115 #elif __BYTE_ORDER == __BIG_ENDIAN
116 # define BB_BIG_ENDIAN 1
117 # define BB_LITTLE_ENDIAN 0
118 #else
119 # define BB_BIG_ENDIAN 0
120 # define BB_LITTLE_ENDIAN 1
121 #endif
122
123 /* ---- Networking ------------------------------------------ */
124 #ifndef __APPLE__
125 # include <arpa/inet.h>
126 #else
127 # include <netinet/in.h>
128 #endif
129
130 #ifndef __socklen_t_defined
131 typedef int socklen_t;
132 #endif
133
134 /* ---- Compiler dependent settings ------------------------- */
135 #ifndef __GNUC__
136 #if defined __INTEL_COMPILER
137 __extension__ typedef __signed__ long long __s64;
138 __extension__ typedef unsigned long long __u64;
139 #endif /* __INTEL_COMPILER */
140 #endif /* ifndef __GNUC__ */
141
142 #if (defined __digital__ && defined __unix__)
143 # undef HAVE_STDBOOL_H
144 # undef HAVE_MNTENT_H
145 #else
146 # define HAVE_STDBOOL_H 1
147 # define HAVE_MNTENT_H 1
148 #endif /* ___digital__ && __unix__ */
149
150 /*----- Kernel versioning ------------------------------------*/
151 #ifdef __linux__
152 #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
153 #endif
154
155 /* ---- miscellaneous --------------------------------------- */
156
157 #if __GNU_LIBRARY__ < 5 && \
158         !defined(__dietlibc__) && \
159         !defined(_NEWLIB_VERSION) && \
160         !(defined __digital__ && defined __unix__)
161 #error "Sorry, this libc version is not supported :("
162 #endif
163
164 #if defined __GLIBC__ || defined __UCLIBC__ \
165         || defined __dietlibc__ || defined _NEWLIB_VERSION
166 #include <features.h>
167 #define HAVE_FEATURES_H
168 #include <stdint.h>
169 #define HAVE_STDINT_H
170 #else
171 /* Largest integral types.  */
172 #if __BIG_ENDIAN__
173 typedef long int                intmax_t;
174 typedef unsigned long int       uintmax_t;
175 #else
176 __extension__
177 typedef long long int           intmax_t;
178 __extension__
179 typedef unsigned long long int  uintmax_t;
180 #endif
181 #endif
182
183 #if (defined __digital__ && defined __unix__)
184 #include <standards.h>
185 #define HAVE_STANDARDS_H
186 #include <inttypes.h>
187 #define HAVE_INTTYPES_H
188 #define PRIu32 "u"
189 #endif
190
191
192 /* NLS stuff */
193 /* THIS SHOULD BE CLEANED OUT OF THE TREE ENTIRELY */
194 #define _(Text) Text
195 #define N_(Text) (Text)
196
197 /* THIS SHOULD BE CLEANED OUT OF THE TREE ENTIRELY */
198 #define fdprintf dprintf
199
200 /* move to platform.c */
201 #if (defined __digital__ && defined __unix__)
202 /* use legacy setpgrp(pidt_,pid_t) for now..  */
203 #define bb_setpgrp do{pid_t __me = getpid();setpgrp(__me,__me);}while(0)
204 #else
205 #define bb_setpgrp setpgrp()
206 #endif
207 #endif  /* platform.h   */