Replace _XOPEN_SOURCE with _POSIX_C_SOURCE

And make sure we don't define both in the same source file.
This commit is contained in:
emersion 2018-11-25 12:12:48 +01:00
parent 827e5513e0
commit 3a310f92ab
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48
51 changed files with 43 additions and 59 deletions

View file

@ -1,4 +1,4 @@
#define _XOPEN_SOURCE 700
#define _POSIX_C_SOURCE 200809L
#include <stdlib.h>
#include <stdio.h>
#include <string.h>