/hiredis/fmacros.h
http://github.com/nicolasff/webdis · C++ Header · 21 lines · 17 code · 4 blank · 0 comment · 3 complexity · 672004b4c9189e72e137d7fcadfab128 MD5 · raw file
- #ifndef __HIREDIS_FMACRO_H
- #define __HIREDIS_FMACRO_H
- #if defined(__linux__)
- #define _BSD_SOURCE
- #define _DEFAULT_SOURCE
- #endif
- #if defined(__sun__)
- #define _POSIX_C_SOURCE 200112L
- #elif defined(__linux__) || defined(__OpenBSD__) || defined(__NetBSD__)
- #define _XOPEN_SOURCE 600
- #else
- #define _XOPEN_SOURCE
- #endif
- #if __APPLE__ && __MACH__
- #define _OSX
- #endif
- #endif