From 9ee079bd34a911dbe92820739868601bdac43599 Mon Sep 17 00:00:00 2001 From: Moritz Lipp Date: Thu, 16 Oct 2014 23:56:41 +0200 Subject: [PATCH] Use _DEFAULT_SOURCE instead of deprecated _BSD_SOURCE --- content-type.c | 2 +- zathura.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content-type.c b/content-type.c index 4af2a10..5edcf10 100644 --- a/content-type.c +++ b/content-type.c @@ -1,6 +1,6 @@ /* See LICENSE file for license and copyright information */ -#define _BSD_SOURCE +#define _DEFAULT_SOURCE #define _XOPEN_SOURCE 700 #include "content-type.h" diff --git a/zathura.c b/zathura.c index 4501fff..966a045 100644 --- a/zathura.c +++ b/zathura.c @@ -1,6 +1,6 @@ /* See LICENSE file for license and copyright information */ -#define _BSD_SOURCE +#define _DEFAULT_SOURCE #define _XOPEN_SOURCE 700 #include