diff options
author | theraven <theraven@FreeBSD.org> | 2012-03-14 14:40:22 +0000 |
---|---|---|
committer | theraven <theraven@FreeBSD.org> | 2012-03-14 14:40:22 +0000 |
commit | eccfeea8a5f95c5484d846fba96de60c97d00c2c (patch) | |
tree | d9a45c8129e1de9dfacd43f81cfb6e078d747f65 /contrib/libc++/include/cstdlib | |
parent | ff1fc6fb5cf6febb3683f7cb3824ab6b4d7ad43f (diff) | |
download | FreeBSD-src-eccfeea8a5f95c5484d846fba96de60c97d00c2c.zip FreeBSD-src-eccfeea8a5f95c5484d846fba96de60c97d00c2c.tar.gz |
Import a slightly newer libc++, with some bugs fixed that were found by running
the test suite on FreeBSD.
Approved by: dim (mentor)
Diffstat (limited to 'contrib/libc++/include/cstdlib')
-rw-r--r-- | contrib/libc++/include/cstdlib | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/libc++/include/cstdlib b/contrib/libc++/include/cstdlib index 1158db2..a5c78e9 100644 --- a/contrib/libc++/include/cstdlib +++ b/contrib/libc++/include/cstdlib @@ -131,6 +131,10 @@ using ::mbtowc; using ::wctomb; using ::mbstowcs; using ::wcstombs; +#ifdef _LIBCPP_HAS_QUICK_EXIT +using ::at_quick_exit; +using ::quick_exit; +#endif // MSVC already has the correct prototype in <stdlib.h.h> #ifdef __cplusplus #if !defined(_MSC_VER) && !defined(__sun__) |