# | Line 7 | Line 7 | |
---|---|---|
7 | #ifndef _common_h_ | |
8 | #define _common_h_ | |
9 | ||
10 | + | #ifdef linux |
11 | + | #undef linux |
12 | + | #endif |
13 | + | |
14 | #if !defined(__FreeBSD__) && !defined(__sun__) && !defined(__APPLE__) | |
15 | + | #ifndef _BSD_SOURCE |
16 | #define _BSD_SOURCE | |
17 | + | #endif |
18 | + | #ifndef _POSIX_SOURCE |
19 | #define _POSIX_SOURCE | |
20 | + | #endif |
21 | + | #ifndef _GNU_SOURCE |
22 | #define _GNU_SOURCE | |
23 | + | #endif |
24 | #elif defined(__sun__) | |
25 | #define __EXTENSIONS__ | |
26 | #endif |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |