summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2020-09-25 13:17:04 -0400
committerJakob Kaivo <jkk@ung.org>2020-09-25 13:17:04 -0400
commit054a8c75073448e80955b5bae172c099f493a6e0 (patch)
treebcd6a999e953aecd1235a50479e31bf35af3257c
parent6f3a09abe930fb2cbfd2de353f919252f55059b9 (diff)
annotate the reason for forcing _POSIX_C_SOURCE
-rw-r--r--src/stdlib/realloc.c2
1 files changed, 1 insertions, 1 deletions
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