00001 /* 00002 * Copyright (c) 1996-1997 00003 * Silicon Graphics Computer Systems, Inc. 00004 * 00005 * Permission to use, copy, modify, distribute and sell this software 00006 * and its documentation for any purpose is hereby granted without fee, 00007 * provided that the above copyright notice appear in all copies and 00008 * that both that copyright notice and this permission notice appear 00009 * in supporting documentation. Silicon Graphics makes no 00010 * representations about the suitability of this software for any 00011 * purpose. It is provided "as is" without express or implied warranty. 00012 */ 00013 00014 #ifndef _CPP_BACKWARD_ALLOC_H 00015 #define _CPP_BACKWARD_ALLOC_H 1 00016 00017 #include "backward_warning.h" 00018 #include <bits/c++config.h> 00019 #include <bits/stl_alloc.h> 00020 00021 using std::__malloc_alloc_template; 00022 using std::malloc_alloc; 00023 using std::simple_alloc; 00024 using std::debug_alloc; 00025 #ifndef __USE_MALLOC 00026 using std::__default_alloc_template; 00027 #endif 00028 using std::alloc; 00029 using std::single_client_alloc; 00030 using std::allocator; 00031 00032 #endif /* _CPP_BACKWARD_ALLOC_H */ 00033 00034 // Local Variables: 00035 // mode:C++ 00036 // End: