mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-26 08:51:08 +00:00
131758eae0
Issue #1565
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" */
|