Simulation Core
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 line
245 B

  1. #ifndef __HIREDIS_FMACRO_H
  2. #define __HIREDIS_FMACRO_H
  3. #ifndef _AIX
  4. #define _XOPEN_SOURCE 600
  5. #define _POSIX_C_SOURCE 200112L
  6. #endif
  7. #if defined(__APPLE__) && defined(__MACH__)
  8. /* Enable TCP_KEEPALIVE */
  9. #define _DARWIN_C_SOURCE
  10. #endif
  11. #endif