home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_144 / 1.ddi / CLIBSRC.ZIP / DEL.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-10  |  455 b   |  22 lines

  1. /*-----------------------------------------------------------------------*
  2.  * filename - del.cpp
  3.  * C++ DELETE
  4.  *-----------------------------------------------------------------------*/
  5.  
  6. /*
  7.  *      C/C++ Run Time Library - Version 5.0
  8.  *
  9.  *      Copyright (c) 1990, 1992 by Borland International
  10.  *      All Rights Reserved.
  11.  *
  12.  */
  13.  
  14.  
  15. #include <stddef.h>
  16. #include <stdlib.h>
  17.  
  18. void operator delete( void _FAR *ptr )
  19. {
  20.     free(ptr);
  21. }
  22.