hiredis/fmacros.h

15 lines
245 B
C
Raw Normal View History

2011-03-29 02:02:23 -07:00
#ifndef __HIREDIS_FMACRO_H
#define __HIREDIS_FMACRO_H
2022-01-17 22:35:31 -08:00
#ifndef _AIX
#define _XOPEN_SOURCE 600
#define _POSIX_C_SOURCE 200112L
2022-01-17 22:35:31 -08:00
#endif
#if defined(__APPLE__) && defined(__MACH__)
/* Enable TCP_KEEPALIVE */
#define _DARWIN_C_SOURCE
#endif
#endif