vere/unix.c: set _XOPEN_SOURCE

Above feature macro is needed on glibc 2.17 era, in order to activate ftw* related functions/macros.
This commit is contained in:
Frank Ch. Eigler 2019-01-19 22:54:25 -05:00 committed by GitHub
parent 7e416d202d
commit b12f2dd9b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
/* vere/unix.c
**
*/
#define _XOPEN_SOURCE 700
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/stat.h>