mirror of
http://github.com/valkey-io/valkey
synced 2024-11-23 11:51:01 +00:00
15 lines
189 B
C
15 lines
189 B
C
#ifndef __HIREDIS_FMACRO_H
|
|
#define __HIREDIS_FMACRO_H
|
|
|
|
#ifndef _BSD_SOURCE
|
|
#define _BSD_SOURCE
|
|
#endif
|
|
|
|
#ifdef __linux__
|
|
#define _XOPEN_SOURCE 700
|
|
#else
|
|
#define _XOPEN_SOURCE
|
|
#endif
|
|
|
|
#endif
|