12061Sjkh// Boilerplate support routines for -*- C++ -*- dynamic memory management.
236454Sjkh
32061Sjkh// Copyright (C) 1997, 1998, 1999, 2000, 2004 Free Software Foundation
433611Sjb//
532427Sjb// This file is part of GCC.
632427Sjb//
736111Sjb// GCC is free software; you can redistribute it and/or modify
833611Sjb// it under the terms of the GNU General Public License as published by
932427Sjb// the Free Software Foundation; either version 2, or (at your option)
1032427Sjb// any later version.
112061Sjkh//
1215603Smarkm// GCC is distributed in the hope that it will be useful,
1330169Sjkh// but WITHOUT ANY WARRANTY; without even the implied warranty of
1420710Sasami// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1520710Sasami// GNU General Public License for more details.
163197Scsgr//
172061Sjkh// You should have received a copy of the GNU General Public License
1812483Speter// along with GCC; see the file COPYING.  If not, write to
1934509Sbde// the Free Software Foundation, 51 Franklin Street, Fifth Floor,
202160Scsgr// Boston, MA 02110-1301, USA.
212834Swollman//
222061Sjkh// As a special exception, you may use this file as part of a free software
232061Sjkh// library without restriction.  Specifically, if other files instantiate
242160Scsgr// templates or use macros or inline functions from this file, or you compile
2517308Speter// this file and link it with other files to produce an executable, this
2619320Sadam// file does not by itself cause the resulting executable to be covered by
2727788Sasami// the GNU General Public License.  This exception does not however
2830169Sjkh// invalidate any other reasons why the executable file might be covered by
2925980Sasami// the GNU General Public License.
301594Srgrimes
3117308Speter#include <bits/c++config.h>
3217308Speter#include "new"
3327910Sasami
3427910Sasami_GLIBCXX_WEAK_DEFINITION void
3527910Sasamioperator delete[] (void *ptr) throw ()
3617308Speter{
3717308Speter  ::operator delete (ptr);
3817308Speter}
3919175Sbde