Set _XOPEN_SOURCE to 600. Fixes #301

Some platforms including RHEL need _XOPEN_SOURCE to be defined as a
particular value. 600 seems to be a popular choice.
This commit is contained in:
Evan Miller
2021-05-18 14:01:01 -04:00
parent 373b7ff4c4
commit 3e11f6dc26

View File

@@ -18,7 +18,7 @@
#include <stdarg.h>
#ifndef _XOPEN_SOURCE
#define _XOPEN_SOURCE
#define _XOPEN_SOURCE 600
#endif
#include "mdbsql.h"