1249259Sdim// Backward-compat support -*- C++ -*-
2249259Sdim
3249259Sdim// Copyright (C) 2001 Free Software Foundation, Inc.
4249259Sdim//
5249259Sdim// This file is part of the GNU ISO C++ Library.  This library is free
6249259Sdim// software; you can redistribute it and/or modify it under the
7249259Sdim// terms of the GNU General Public License as published by the
8249259Sdim// Free Software Foundation; either version 2, or (at your option)
9249259Sdim// any later version.
10249259Sdim
11249259Sdim// This library is distributed in the hope that it will be useful,
12249259Sdim// but WITHOUT ANY WARRANTY; without even the implied warranty of
13249259Sdim// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14249259Sdim// GNU General Public License for more details.
15249259Sdim
16249259Sdim// You should have received a copy of the GNU General Public License along
17249259Sdim// with this library; see the file COPYING.  If not, write to the Free
18263508Sdim// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19263508Sdim// USA.
20249259Sdim
21249259Sdim// As a special exception, you may use this file as part of a free software
22249259Sdim// library without restriction.  Specifically, if other files instantiate
23249259Sdim// templates or use macros or inline functions from this file, or you compile
24249259Sdim// this file and link it with other files to produce an executable, this
25249259Sdim// file does not by itself cause the resulting executable to be covered by
26249259Sdim// the GNU General Public License.  This exception does not however
27249259Sdim// invalidate any other reasons why the executable file might be covered by
28249259Sdim// the GNU General Public License.
29249259Sdim
30249259Sdim/*
31249259Sdim *
32249259Sdim * Copyright (c) 1994
33249259Sdim * Hewlett-Packard Company
34263508Sdim *
35263508Sdim * Permission to use, copy, modify, distribute and sell this software
36263508Sdim * and its documentation for any purpose is hereby granted without fee,
37263508Sdim * provided that the above copyright notice appear in all copies and
38263508Sdim * that both that copyright notice and this permission notice appear
39263508Sdim * in supporting documentation.  Hewlett-Packard Company makes no
40263508Sdim * representations about the suitability of this software for any
41249259Sdim * purpose.  It is provided "as is" without express or implied warranty.
42249259Sdim *
43249259Sdim *
44249259Sdim * Copyright (c) 1996,1997
45249259Sdim * Silicon Graphics Computer Systems, Inc.
46249259Sdim *
47249259Sdim * Permission to use, copy, modify, distribute and sell this software
48249259Sdim * and its documentation for any purpose is hereby granted without fee,
49249259Sdim * provided that the above copyright notice appear in all copies and
50249259Sdim * that both that copyright notice and this permission notice appear
51249259Sdim * in supporting documentation.  Silicon Graphics makes no
52249259Sdim * representations about the suitability of this software for any
53249259Sdim * purpose.  It is provided "as is" without express or implied warranty.
54249259Sdim */
55249259Sdim
56249259Sdim#ifndef _BACKWARD_LIST_H
57249259Sdim#define _BACKWARD_LIST_H 1
58249259Sdim
59249259Sdim#include "backward_warning.h"
60249259Sdim#include "algobase.h"
61249259Sdim#include "alloc.h"
62249259Sdim#include <list>
63249259Sdim
64249259Sdimusing std::list;
65249259Sdim
66249259Sdim#endif /* _BACKWARD_LIST_H */
67249259Sdim