mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 08:38:27 -05: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
|