1 // This file is part of the ustl library, an STL implementation.
3 // Copyright (C) 2005 by Mike Sharov <msharov@users.sourceforge.net>
4 // This file is free software, distributed under the MIT License.
12 void* throwing_malloc (size_t n
) throw (ustl::bad_alloc
)
16 throw ustl::bad_alloc (n
);
20 void free_nullok (void* p
) throw()