libyang BUGFIX set feature macro for strdup() on OSX
Since OS X requires different value (600) of _XOPEN_SOURCE feature test macro for
strdup() than linux (500), better use _POSIX_C_SOURCE 200809L. It is available
since glibc 2.12 (released 2010) so it shouldn't be an issue.
diff --git a/tools/lint/completion.c b/tools/lint/completion.c
index 4db17a0..2506019 100644
--- a/tools/lint/completion.c
+++ b/tools/lint/completion.c
@@ -13,6 +13,7 @@
*/
#define _GNU_SOURCE
+#define _POSIX_C_SOURCE 200809L /* strdup */
#include <errno.h>
#include <stdint.h>