Remove _() and N_() from platform.h. #define them as NOP macros in the two
[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
101 #if (defined __digital__ && defined __unix__)
102 # include <sex.h>
103 # define __BIG_ENDIAN__ (BYTE_ORDER == BIG_ENDIAN)
104 # define __BYTE_ORDER BYTE_ORDER
105 #elif !defined __APPLE__
106 # include <byteswap.h>
107 # include <endian.h>
108 #endif
109
110 #ifdef __BIG_ENDIAN__
111 # define BB_BIG_ENDIAN 1
112 # define BB_LITTLE_ENDIAN 0
113 #elif __BYTE_ORDER == __BIG_ENDIAN
114 # define BB_BIG_ENDIAN 1
115 # define BB_LITTLE_ENDIAN 0
116 #else
117 # define BB_BIG_ENDIAN 0
118 # define BB_LITTLE_ENDIAN 1
119 #endif
120
121 /* ---- Networking ------------------------------------------ */
122 #ifndef __APPLE__
123 # include <arpa/inet.h>
124 #else
125 # include <netinet/in.h>
126 #endif
127
128 #ifndef __socklen_t_defined
129 typedef int socklen_t;
130 #endif
131
132 /* ---- Compiler dependent settings ------------------------- */
133 #ifndef __GNUC__
134 #if defined __INTEL_COMPILER
135 __extension__ typedef __signed__ long long __s64;
136 __extension__ typedef unsigned long long __u64;
137 #endif /* __INTEL_COMPILER */
138 #endif /* ifndef __GNUC__ */
139
140 #if (defined __digital__ && defined __unix__)
141 # undef HAVE_STDBOOL_H
142 # undef HAVE_MNTENT_H
143 #else
144 # define HAVE_STDBOOL_H 1
145 # define HAVE_MNTENT_H 1
146 #endif /* ___digital__ && __unix__ */
147
148 /*----- Kernel versioning ------------------------------------*/
149 #ifdef __linux__
150 #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
151 #endif
152
153 /* ---- miscellaneous --------------------------------------- */
154
155 #if __GNU_LIBRARY__ < 5 && \
156         !defined(__dietlibc__) && \
157         !defined(_NEWLIB_VERSION) && \
158         !(defined __digital__ && defined __unix__)
159 #error "Sorry, this libc version is not supported :("
160 #endif
161
162 #if defined __GLIBC__ || defined __UCLIBC__ \
163         || defined __dietlibc__ || defined _NEWLIB_VERSION
164 #include <features.h>
165 #define HAVE_FEATURES_H
166 #include <stdint.h>
167 #define HAVE_STDINT_H
168 #else
169 /* Largest integral types.  */
170 #if __BIG_ENDIAN__
171 typedef long int                intmax_t;
172 typedef unsigned long int       uintmax_t;
173 #else
174 __extension__
175 typedef long long int           intmax_t;
176 __extension__
177 typedef unsigned long long int  uintmax_t;
178 #endif
179 #endif
180
181 #if (defined __digital__ && defined __unix__)
182 #include <standards.h>
183 #define HAVE_STANDARDS_H
184 #include <inttypes.h>
185 #define HAVE_INTTYPES_H
186 #define PRIu32 "u"
187 #endif
188
189 // Need to implement fdprintf for platforms that haven't got dprintf.
190 #define fdprintf dprintf
191
192 /* THIS SHOULD BE CLEANED OUT OF THE TREE ENTIRELY */
193 /* FIXME: fix tar.c! */
194 #ifndef FNM_LEADING_DIR
195 #define FNM_LEADING_DIR 0
196 #endif
197
198 /* move to platform.c */
199 #if (defined __digital__ && defined __unix__)
200 /* use legacy setpgrp(pidt_,pid_t) for now..  */
201 #define bb_setpgrp do{pid_t __me = getpid();setpgrp(__me,__me);}while(0)
202 #else
203 #define bb_setpgrp setpgrp()
204 #endif
205
206 // I have no idea what platform this was for since aldot didn't say, but
207 // it belongs here since Linux doesn't need it.
208
209 #if !defined ADJ_OFFSET_SINGLESHOT && defined MOD_CLKA && defined MOD_OFFSET
210 #define ADJ_OFFSET_SINGLESHOT (MOD_CLKA | MOD_OFFSET)
211 #endif
212 #if !defined ADJ_FREQUENCY && defined MOD_FREQUENCY
213 #define ADJ_FREQUENCY MOD_FREQUENCY
214 #endif
215 #if !defined ADJ_TIMECONST && defined MOD_TIMECONST
216 #define ADJ_TIMECONST MOD_TIMECONST
217 #endif
218 #if !defined ADJ_TICK && defined MOD_CLKB
219 #define ADJ_TICK MOD_CLKB
220 #endif
221
222 #endif  /* platform.h   */