diff options
author | Dimitri Staessens <dimitri.staessens@ugent.be> | 2018-09-26 14:49:39 +0200 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@ugent.be> | 2018-09-27 09:26:26 +0200 |
commit | 51bb05f15b78fbfdf53417ec1d1c21e999c0e556 (patch) | |
tree | e01e39f12c28120defd9f0b363201ce9163a103a /src/ipcpd/normal/fa.c | |
parent | a0ea1751683d7fb242b9a8076b05058f21dfe052 (diff) | |
download | ouroboros-51bb05f15b78fbfdf53417ec1d1c21e999c0e556.tar.gz ouroboros-51bb05f15b78fbfdf53417ec1d1c21e999c0e556.zip |
include: Remove _DEFAULT_SOURCE in endian.h
This removes the _DEFAULT_SOURCE definition in the endian header as it
should not be there. This avoids double and conflicting definitions.
Signed-off-by: Dimitri Staessens <dimitri.staessens@ugent.be>
Signed-off-by: Sander Vrijders <sander.vrijders@ugent.be>
Diffstat (limited to 'src/ipcpd/normal/fa.c')
-rw-r--r-- | src/ipcpd/normal/fa.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ipcpd/normal/fa.c b/src/ipcpd/normal/fa.c index 067a6e73..87167131 100644 --- a/src/ipcpd/normal/fa.c +++ b/src/ipcpd/normal/fa.c @@ -20,7 +20,11 @@ * Foundation, Inc., http://www.fsf.org/about/contact/. */ +#if defined(__linux__) || defined(__CYGWIN__) +#define _DEFAULT_SOURCE +#else #define _POSIX_C_SOURCE 200112L +#endif #include "config.h" |