diff options
| author | mrg <mrg@NetBSD.org> | 1998-03-29 08:31:49 +0000 |
|---|---|---|
| committer | mrg <mrg@NetBSD.org> | 1998-03-29 08:31:49 +0000 |
| commit | 1d9ec375c03e61d8a3d986cfa9e47e8060cf509a (patch) | |
| tree | d4e3449c96a7263e1e9e519c8f19a3d1cb3ea411 /gnu/dist/libstdc++/stl/stack | |
| parent | d3c5e32f1d27a9891610753a12932ae435e29ce6 (diff) | |
initial import of the egcs 1.0.2 standard c++ library
Diffstat (limited to 'gnu/dist/libstdc++/stl/stack')
| -rw-r--r-- | gnu/dist/libstdc++/stl/stack | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/gnu/dist/libstdc++/stl/stack b/gnu/dist/libstdc++/stl/stack new file mode 100644 index 00000000000..36461d95b8c --- /dev/null +++ b/gnu/dist/libstdc++/stl/stack @@ -0,0 +1,41 @@ +/* + * + * Copyright (c) 1994 + * Hewlett-Packard Company + * + * Permission to use, copy, modify, distribute and sell this software + * and its documentation for any purpose is hereby granted without fee, + * provided that the above copyright notice appear in all copies and + * that both that copyright notice and this permission notice appear + * in supporting documentation. Hewlett-Packard Company makes no + * representations about the suitability of this software for any + * purpose. It is provided "as is" without express or implied warranty. + * + * + * Copyright (c) 1996,1997 + * Silicon Graphics Computer Systems, Inc. + * + * Permission to use, copy, modify, distribute and sell this software + * and its documentation for any purpose is hereby granted without fee, + * provided that the above copyright notice appear in all copies and + * that both that copyright notice and this permission notice appear + * in supporting documentation. Silicon Graphics makes no + * representations about the suitability of this software for any + * purpose. It is provided "as is" without express or implied warranty. + */ + +#ifndef __SGI_STL_STACK +#define __SGI_STL_STACK + +#include <stl_algobase.h> +#include <stl_alloc.h> +#include <stl_construct.h> +#include <stl_uninitialized.h> +#include <stl_deque.h> +#include <stl_stack.h> + +#endif /* __SGI_STL_STACK */ + +// Local Variables: +// mode:C++ +// End: |
