mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-27 01:11:06 +00:00
21 lines
386 B
C
21 lines
386 B
C
|
/*
|
||
|
* \brief Include after including Linux headers in C++
|
||
|
* \author Christian Helmuth
|
||
|
* \date 2014-08-21
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* Copyright (C) 2014 Genode Labs GmbH
|
||
|
*
|
||
|
* This file is part of the Genode OS framework, which is distributed
|
||
|
* under the terms of the GNU General Public License version 2.
|
||
|
*/
|
||
|
|
||
|
#undef new
|
||
|
#undef class
|
||
|
#undef private
|
||
|
|
||
|
#pragma GCC diagnostic pop
|
||
|
|
||
|
} /* extern "C" */
|