From 542afc562fa8b828f3c87e9dbe47a373ac09f147 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Thu, 13 Mar 2014 12:55:15 +0100 Subject: [PATCH] Hotfix for kernel/compatibility.h --- kernel/compatibility.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kernel/compatibility.h b/kernel/compatibility.h index 58e0b52e9..c7603c8a5 100644 --- a/kernel/compatibility.h +++ b/kernel/compatibility.h @@ -20,10 +20,11 @@ #ifndef COMPATIBILITY_H #define COMPATIBILITY_H -#if !(_XOPEN_SOURCE >= 700 || _POSIX_C_SOURCE >= 200809L) #include #include +#if !(_XOPEN_SOURCE >= 700 || _POSIX_C_SOURCE >= 200809L) + #define open_memstream compat_open_memstream #define fmemopen compat_fmemopen -- 2.30.2