diff options
| author | David 'Digit' Turner <digit@google.com> | 2009-07-10 12:23:09 +0200 |
|---|---|---|
| committer | David 'Digit' Turner <digit@google.com> | 2009-07-10 18:40:55 +0200 |
| commit | 348065586a2e6154d6cff36afa6e00af6bbc5918 (patch) | |
| tree | 20ad478d6e6cd40db0625fc2b31403aabc9d791e /libstdc++/include/cstdlib | |
| parent | db4616b2d3234a1916cafb48e65c50cf302afcde (diff) | |
| download | bionic-348065586a2e6154d6cff36afa6e00af6bbc5918.zip bionic-348065586a2e6154d6cff36afa6e00af6bbc5918.tar.gz bionic-348065586a2e6154d6cff36afa6e00af6bbc5918.tar.bz2 | |
Add new C++ headers <cerrno> and <cfloat>
Also add std::malloc/realloc/calloc/free to <cstdlib>
Rename <cwchar_is_not_supported> to <cwchar>
Diffstat (limited to 'libstdc++/include/cstdlib')
| -rw-r--r-- | libstdc++/include/cstdlib | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libstdc++/include/cstdlib b/libstdc++/include/cstdlib index 9e8a7ce..5e6a0b3 100644 --- a/libstdc++/include/cstdlib +++ b/libstdc++/include/cstdlib @@ -85,6 +85,11 @@ using ::srand; using ::random; using ::srandom; +using ::malloc; +using ::free; +using ::calloc; +using ::realloc; + using ::unlockpt; using ::ptsname; using ::ptsname_r; |
