Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. /*
  2.  * Copyright (c) 1996-1997
  3.  * Silicon Graphics Computer Systems, Inc.
  4.  *
  5.  * Permission to use, copy, modify, distribute and sell this software
  6.  * and its documentation for any purpose is hereby granted without fee,
  7.  * provided that the above copyright notice appear in all copies and
  8.  * that both that copyright notice and this permission notice appear
  9.  * in supporting documentation.  Silicon Graphics makes no
  10.  * representations about the suitability of this software for any
  11.  * purpose.  It is provided "as is" without express or implied warranty.
  12.  */
  13.  
  14. #ifndef _CPP_BACKWARD_ALLOC_H
  15. #define _CPP_BACKWARD_ALLOC_H 1
  16.  
  17. #include "backward_warning.h"
  18. #include <bits/c++config.h>
  19. #include <bits/stl_alloc.h>
  20.  
  21. using std::__malloc_alloc_template;
  22. using std::malloc_alloc;
  23. using std::simple_alloc;
  24. using std::debug_alloc;
  25. #ifndef __USE_MALLOC
  26. using std::__default_alloc_template;
  27. #endif
  28. using std::alloc;
  29. using std::single_client_alloc;
  30. using std::allocator;
  31.  
  32. #endif /* _CPP_BACKWARD_ALLOC_H */
  33.  
  34. // Local Variables:
  35. // mode:C++
  36. // End:
  37.