* libsupc++/new_op.cc: Update comments.
* libsupc++/del_op.cc: Likewise.
From-SVN: r85464
+2004-08-03 Mark Mitchell <mark@codesourcery.com>
+
+ * libsupc++/new_op.cc: Update comments.
+ * libsupc++/del_op.cc: Likewise.
+
2004-08-02 Mark Mitchell <mark@codesourcery.com>
* libsupc++/cxxabi.h: Make all declarations have default
#if _GLIBCXX_HOSTED
using std::free;
#else
-// In a freestanding environment, "free" may not be available. In
-// that case, it may make sense not to define "operator delete" at
-// all. For now, we assume that "free" will work.
+// A freestanding C runtime may not provide "free" -- but there is no
+// other reasonable way to implement "operator delete".
extern "C" void free(void *);
#endif
#if _GLIBCXX_HOSTED
using std::malloc;
#else
-// In a freestanding environment, "malloc" may not be available. In
-// that case, it may make sense not to define "operator new" at all.
-// For now, we assume that "malloc" will work.
+// A freestanding C runtime may not provide "malloc" -- but there is no
+// other reasonable way to implement "operator new".
extern "C" void *malloc (std::size_t);
#endif