commit | 348065586a2e6154d6cff36afa6e00af6bbc5918 | [log] [tgz] |
---|---|---|
author | David 'Digit' Turner <digit@google.com> | Fri Jul 10 12:23:09 2009 +0200 |
committer | David 'Digit' Turner <digit@google.com> | Fri Jul 10 18:40:55 2009 +0200 |
tree | 20ad478d6e6cd40db0625fc2b31403aabc9d791e | |
parent | db4616b2d3234a1916cafb48e65c50cf302afcde [diff] [blame] |
Add new C++ headers <cerrno> and <cfloat> Also add std::malloc/realloc/calloc/free to <cstdlib> Rename <cwchar_is_not_supported> to <cwchar>
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 ::random; using ::srandom; +using ::malloc; +using ::free; +using ::calloc; +using ::realloc; + using ::unlockpt; using ::ptsname; using ::ptsname_r;