diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2016-11-08 17:46:29 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2016-11-08 17:46:29 +0100 |
commit | c8cafc8ebb5320ac7c6117c17e6460036f0fdf62 (patch) | |
tree | a6ea77c3129973089e49ce65591bd6cf65f4d713 /sysdep/unix/main.c | |
parent | 920a86e8493fe25008f084f67f368aea9b197efd (diff) |
Minor code cleanups
Diffstat (limited to 'sysdep/unix/main.c')
-rw-r--r-- | sysdep/unix/main.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdep/unix/main.c b/sysdep/unix/main.c index 35bc3fd1..8aa19fce 100644 --- a/sysdep/unix/main.c +++ b/sysdep/unix/main.c @@ -8,7 +8,9 @@ #undef LOCAL_DEBUG -#define _GNU_SOURCE 1 +#ifndef _GNU_SOURCE +#define _GNU_SOURCE +#endif #include <stdio.h> #include <stdlib.h> |