From 0818c0c9e326b25b66b88bb9377f19944ce05bdc Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Mon, 4 Oct 2010 09:55:21 +0200 Subject: [PATCH] correctly define _BSD_SOURCE and _XOPEN_SOURCE macros --- zathura.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zathura.c b/zathura.c index 38e2c85..35addf0 100644 --- a/zathura.c +++ b/zathura.c @@ -1,6 +1,7 @@ /* See LICENSE file for license and copyright information */ -#define _BSD_SOURCE || _XOPEN_SOURCE >= 500 +#define _BSD_SOURCE +#define _XOPEN_SOURCE 500 #include #include