diff options
author | June McEnroe <june@causal.agency> | 2019-03-27 22:29:29 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-03-27 22:29:29 -0400 |
commit | d9007cf783661c34673d9f48a7ccfb176e4cb532 (patch) | |
tree | eccaa899a8dbab28e5859894ab4ba409714386f0 | |
parent | Add FreeCell (diff) | |
download | wep-d9007cf783661c34673d9f48a7ccfb176e4cb532.tar.gz wep-d9007cf783661c34673d9f48a7ccfb176e4cb532.zip |
Add feature test macro for GNU in dump
Diffstat (limited to '')
-rw-r--r-- | dump.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dump.c b/dump.c index 474af92..63ebba3 100644 --- a/dump.c +++ b/dump.c @@ -14,6 +14,8 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#define _POSIX_C_SOURCE 2 + #include <err.h> #include <stdbool.h> #include <stdio.h> |