From 054a8c75073448e80955b5bae172c099f493a6e0 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Fri, 25 Sep 2020 13:17:04 -0400 Subject: annotate the reason for forcing _POSIX_C_SOURCE --- src/stdlib/realloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/stdlib/realloc.c b/src/stdlib/realloc.c index c1008457..b5efffb2 100644 --- a/src/stdlib/realloc.c +++ b/src/stdlib/realloc.c @@ -1,6 +1,6 @@ #if ((!defined _POSIX_C_SOURCE) || (_POSIX_C_SOURCE < 199309L)) #undef _POSIX_C_SOURCE -#define _POSIX_C_SOURCE 199309L +#define _POSIX_C_SOURCE 199309L /* force mmap() constants */ #define POSIX_FORCED #endif -- cgit v1.2.1