1 /* 2 * 3 * Copyright 2009, The Android Open Source Project 4 * Copyright (c) 1994 5 * Hewlett-Packard Company 6 * 7 * Permission to use, copy, modify, distribute and sell this software 8 * and its documentation for any purpose is hereby granted without fee, 9 * provided that the above copyright notice appear in all copies and 10 * that both that copyright notice and this permission notice appear 11 * in supporting documentation. Hewlett-Packard Company makes no 12 * representations about the suitability of this software for any 13 * purpose. It is provided "as is" without express or implied warranty. 14 * 15 * Copyright (c) 1997 16 * Silicon Graphics Computer Systems, Inc. 17 * 18 * Permission to use, copy, modify, distribute and sell this software 19 * and its documentation for any purpose is hereby granted without fee, 20 * provided that the above copyright notice appear in all copies and 21 * that both that copyright notice and this permission notice appear 22 * in supporting documentation. Silicon Graphics makes no 23 * representations about the suitability of this software for any 24 * purpose. It is provided "as is" without express or implied warranty. 25 */ 26 27 #ifndef __SGI_STL_HEAP_H 28 #define __SGI_STL_HEAP_H 29 30 #include <concept_checks.h> 31 #include <stl_config.h> 32 #include <stl_heap.h> 33 34 #ifdef __STL_USE_NAMESPACES 35 36 using __STD::push_heap; 37 using __STD::pop_heap; 38 using __STD::make_heap; 39 using __STD::sort_heap; 40 41 #endif /* __STL_USE_NAMESPACES */ 42 43 44 #endif /* __SGI_STL_HEAP_H */ 45 46 // Local Variables: 47 // mode:C++ 48 // End: 49