haiku/src/kernel/core/util/kernel_cpp.cpp
Axel Dörfler 91d62d9f6a Removed stuff that's no longer necessary due to the stdio.h switch.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7418 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-05 16:38:32 +00:00

31 lines
440 B
C++

/* cpp - C++ in the kernel
**
** Initial version by Axel Dörfler, axeld@pinc-software.de
** This file may be used under the terms of the OpenBeOS License.
*/
#if _KERNEL_MODE
#include "util/kernel_cpp.h"
const nothrow_t std::nothrow = {};
#if __GNUC__ == 2
extern "C" void
__pure_virtual()
{
//printf("pure virtual function call");
}
#elif __GNUC__ >= 3
extern "C" void
__cxa_pure_virtual()
{
}
#endif
#endif // _#if KERNEL_MODE