summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authornros <nros@NetBSD.org>2015-11-07 16:21:42 +0000
committernros <nros@NetBSD.org>2015-11-07 16:21:42 +0000
commitd860259f851aefa9ff709911ef49e3e78db7f8c5 (patch)
tree9156d2df856d6954b78ad4cc1b3188b603362cc4 /include
parent28732cfe3672102f63503a89ff64a997069b09f1 (diff)
Add the C11 function aligned_alloc to libc.
Diffstat (limited to 'include')
-rw-r--r--include/stdlib.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h
index 3d2d0800c1a..f8f9abc4860 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -1,4 +1,4 @@
-/* $NetBSD: stdlib.h,v 1.115 2015/02/17 20:33:40 joerg Exp $ */
+/* $NetBSD: stdlib.h,v 1.116 2015/11/07 16:21:42 nros Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -234,6 +234,7 @@ long double strtold(const char * __restrict, char ** __restrict);
#if defined(_ISOC11_SOURCE) || (__STDC_VERSION__ - 0) >= 201101L || \
defined(_NETBSD_SOURCE) || (__cplusplus - 0) >= 201103L
+void *aligned_alloc(size_t, size_t);
int at_quick_exit(void (*)(void));
__dead void quick_exit(int);
#endif