rt-thread-official/components/cplusplus/crt.cpp

38 lines
597 B
C++
Raw Normal View History

2015-03-22 08:56:37 +08:00
/*
2018-10-14 19:28:18 +08:00
* Copyright (c) 2006-2018, RT-Thread Development Team
*
* 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
#include <rtthread.h>
#include "crt.h"
void *operator new(size_t size)
{
return rt_malloc(size);
}
void *operator new[](size_t size)
{
return rt_malloc(size);
}
void operator delete(void *ptr)
{
rt_free(ptr);
}
void operator delete[](void *ptr)
2014-11-01 09:09:21 +08:00
{
return rt_free(ptr);
}
void __cxa_pure_virtual(void)
{
rt_kprintf("Illegal to call a pure virtual function.\n");
}