www.pudn.com > system.rar > del_af.cpp


/*****************************************************************************/ 
/* del_af     v2.54                                                          */ 
/* Copyright (c) 1996-2004 Texas Instruments Incorporated                    */ 
/*****************************************************************************/ 
#include  
 
/****************************************************************************/ 
/*                                                                          */ 
/* OPERATOR DELETE[]() - DEFAULT GLOBAL DEALLOCATION FUNCTION FOR ARRAYS.   */ 
/*                                                                          */ 
/****************************************************************************/ 
void  operator delete[](void *ptr) // throw() 
{ 
   operator delete(ptr); 
}