mirror of https://github.com/lianthony/NT4.0
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.
31 lines
724 B
31 lines
724 B
/***
|
|
*oldnew.c - set new handler behavior to old-style behavior
|
|
*
|
|
* Copyright (c) 1995, Microsoft Corporation. All rights reserved.
|
|
*
|
|
*Purpose:
|
|
* De-activate the Ansi new handler.
|
|
*
|
|
* Note that old-style new handling is OBSOLETE.
|
|
*
|
|
*Revision History:
|
|
* 05-09-95 CFW Module created.
|
|
* 06-23-95 CFW ANSI new handler removed from build.
|
|
*
|
|
*******************************************************************************/
|
|
|
|
#ifdef ANSI_NEW_HANDLER
|
|
|
|
#ifndef _POSIX_
|
|
#ifndef DLL_FOR_WIN32S
|
|
|
|
#include <stddef.h>
|
|
#include <internal.h>
|
|
|
|
/* set default ansi new handler */
|
|
new_handler _defnewh = _NO_ANSI_NEW_HANDLER;
|
|
|
|
#endif /* DLL_FOR_WIN32S */
|
|
#endif /* _POSIX_ */
|
|
|
|
#endif /* ANSI_NEW_HANDLER */
|