#ifndef _LIBCXX_MEMORY_ #define _LIBCXX_MEMORY_ namespace std { template <> class allocator { public: typedef void* pointer; typedef const void* const_pointer; typedef void value_type; template struct rebind { typedef allocator other; }; }; } #endif