rt-thread-official/components/libc/cplusplus/cxx_crt.h

27 lines
518 B
C
Raw Normal View History

2015-03-22 08:56:37 +08:00
/*
2021-03-08 18:19:04 +08:00
* Copyright (c) 2006-2021, RT-Thread Development Team
2018-10-14 19:28:18 +08:00
*
* SPDX-License-Identifier: Apache-2.0
*
2015-03-22 08:56:37 +08:00
* Change Logs:
* Date Author Notes
* 2015-03-07 Bernard Add copyright header.
*/
2014-11-01 09:09:21 +08:00
#ifndef CRT_H_
#define CRT_H_
#include <inttypes.h>
#include <stdlib.h>
void *operator new(size_t size);
void *operator new[](size_t size);
void operator delete(void * ptr);
void operator delete[](void *ptr);
2014-11-01 09:09:21 +08:00
extern "C" void __cxa_pure_virtual(void);
extern "C" int cplusplus_system_init(void);
2014-11-01 09:09:21 +08:00
#endif