V8/usr/src/cmd/cfront/libC/new/_delete.c

Compare this file to the similar file:
Show the results in this format:

extern free(char*);
extern void operator delete(void* p)
{
	if (p) free( (char*)p );
}