Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/***
*newnew.c - set default new handler to NULL * * Copyright (c) 1995-2001, Microsoft Corporation. All rights reserved. * *Purpose: * Set default ANSI C++ new handler to NULL. * * Link with this object to get ANSI C++ new handler behavior. * *Revision History: * 05-09-95 CFW Module created. * 06-23-95 CFW ANSI new handler removed from build. * 05-13-99 PML Remove Win32s * *******************************************************************************/
#ifdef ANSI_NEW_HANDLER
#ifndef _POSIX_
#include <stddef.h>
#include <internal.h>
/* set default ansi new handler */ new_handler _defnewh = NULL;
#endif /* _POSIX_ */
#endif /* ANSI_NEW_HANDLER */
|