summaryrefslogtreecommitdiffstats
path: root/private/crt32/heap/delete.cxx
blob: bc2d73e7a482db39690266decf61356681206699 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/***
*delete.cxx - defines C++ delete routine
*
*	Copyright (c) 1990-1992, Microsoft Corporation.  All rights reserved.
*
*Purpose:
*	Defines C++ delete routine.
*
*Revision History:
*	05-07-90  WAJ	Initial version.
*	08-30-90  WAJ	new now takes unsigned ints.
*	08-08-91  JCR	call _halloc/_hfree, not halloc/hfree
*	08-13-91  KRS	Change new.hxx to new.h.  Fix copyright.
*	08-13-91  JCR	ANSI-compatible _set_new_handler names
*	10-30-91  JCR	Split new, delete, and handler into seperate sources
*	11-13-91  JCR	32-bit version
*
*******************************************************************************/

#include <cruntime.h>
#include <malloc.h>
#include <new.h>


void operator delete( void * p )
{
    free( p );
}