summaryrefslogtreecommitdiffstats
path: root/include/stdlib.h
diff options
context:
space:
mode:
authortheraven <theraven@FreeBSD.org>2012-03-14 14:39:07 +0000
committertheraven <theraven@FreeBSD.org>2012-03-14 14:39:07 +0000
commitff1fc6fb5cf6febb3683f7cb3824ab6b4d7ad43f (patch)
tree4bfa527a9cfebc6907da7a152ce075c77ca18f0f /include/stdlib.h
parent9621065c9461e2ec9e91cd5fbb3d561e1387dc01 (diff)
downloadFreeBSD-src-ff1fc6fb5cf6febb3683f7cb3824ab6b4d7ad43f.zip
FreeBSD-src-ff1fc6fb5cf6febb3683f7cb3824ab6b4d7ad43f.tar.gz
Expose some C11 stuff that is also C++11 stuff in C++11 mode.
Approved by: dim (mentor)
Diffstat (limited to 'include/stdlib.h')
-rw-r--r--include/stdlib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h
index 2c62f09..11ac074 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -151,7 +151,7 @@ _Noreturn void _Exit(int);
/*
* If we're in a mode greater than C99, expose C11 functions.
*/
-#if __ISO_C_VISIBLE >= 2011
+#if __ISO_C_VISIBLE >= 2011 || __cplusplus >= 201103L
void * aligned_alloc(size_t, size_t);
int at_quick_exit(void (*)(void));
_Noreturn void
OpenPOWER on IntegriCloud