mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 00:28:26 -05:00
16 lines
212 B
C
16 lines
212 B
C
|
#ifndef _REDIS_FMACRO_H
|
||
|
#define _REDIS_FMACRO_H
|
||
|
|
||
|
#define _BSD_SOURCE
|
||
|
|
||
|
#ifdef __linux__
|
||
|
#define _XOPEN_SOURCE 700
|
||
|
#else
|
||
|
#define _XOPEN_SOURCE
|
||
|
#endif
|
||
|
|
||
|
#define _LARGEFILE_SOURCE
|
||
|
#define _FILE_OFFSET_BITS 64
|
||
|
|
||
|
#endif
|