xref: /haiku/src/add-ons/kernel/file_systems/reiserfs/cpp.cpp (revision 5e96d7d537fbec23bad4ae9b4c8e7b02e769f0c6)
1 /* cpp - C++ in the kernel
2 **
3 ** Initial version by Axel Dörfler, axeld@pinc-software.de
4 ** This file may be used under the terms of the OpenBeOS License.
5 */
6 
7 
8 #include "cpp.h"
9 
10 
11 //nothrow_t _dontthrow;
12 
13 extern "C" void __pure_virtual()
14 {
15 	//printf("pure virtual function call");
16 }
17 
18