Files
sibo-playground/code/SIBOSDK/include/new.hpp
T

22 lines
843 B
C++
Raw Normal View History

2026-07-06 18:01:36 +01:00
/* Release 3.10 */
/*-------------------------------------------------------------------------*
* *
* NEW.H - header file for C++ memory allocation operators. *
* *
* COPYRIGHT (C) 1990..1992 Clarion Software Corporation *
* All Rights Reserved *
* *
*--------------------------------------------------------------------------*/
#include <stdepoc.h>
#ifndef _NEW_INC_
#define _NEW_INC_
#include <stddef.h>
extern void (* set_new_handler(void(*)()))();
void * operator new(size_t _size, void *_place);
#endif