123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- #ifndef __FEATURES_H
- #define __FEATURES_H
- #define __UCLIBC__ 0
- #define __UCLIBC_MAJOR__ 9
- #define __UCLIBC_MINOR__ 1
- #ifndef __GNUC__
- #define __attribute(foo)
- #endif
- #if !defined __GNUC__ || __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 92)
- # define __restrict
- #endif
- #ifdef __STDC__
- #define __P(x) x
- #define __const const
- #if __STDC__ != 1
- #define const
- #define volatile
- #endif
- #else
- #define __P(x) ()
- #define __const
- #define const
- #define volatile
- #endif
- #define __BEGIN_DECLS
- #define __END_DECLS
- #define __CONSTVALUE
- #define __CONSTVALUE2
- #define __USE_BSD
- #define __USE_MISC
- #define __USE_POSIX
- #define __USE_POSIX2
- #define __USE_XOPEN
- #define _POSIX_THREAD_SAFE_FUNCTIONS
- #include <sys/cdefs.h>
- #endif
|