mirror of
https://github.com/genodelabs/genode.git
synced 2025-02-22 10:21:04 +00:00
This commit enables compile-time warnings displayed whenever a deprecated API header is included, and adjusts the existing #include directives accordingly. Issue #1987
24 lines
629 B
C
24 lines
629 B
C
/*
|
|
* \brief ROM dataspace utility
|
|
* \author Norman Feske
|
|
* \date 2012-01-09
|
|
*
|
|
* \deprecated This header exists for API compatibility only.
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2012-2013 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.
|
|
*/
|
|
|
|
#warning os/attached_rom_dataspace.h is deprecated, use base/attached_rom_dataspace.h instead
|
|
|
|
#ifndef _INCLUDE__OS__ATTACHED_ROM_DATASPACE_H_
|
|
#define _INCLUDE__OS__ATTACHED_ROM_DATASPACE_H_
|
|
|
|
#include <base/attached_rom_dataspace.h>
|
|
|
|
#endif /* _INCLUDE__OS__ATTACHED_ROM_DATASPACE_H_ */
|