mirror of
https://github.com/mborgerson/xemu.git
synced 2025-12-01 16:10:01 +00:00
Remove leading underscores from QEMU defines
Leading underscores followed by a capital letter or underscore are reserved by the C standard. Resolves: https://gitlab.com/qemu-project/qemu/-/issues/369 Signed-off-by: Ahmed Abouzied <email@aabouzied.com> Message-Id: <20210605174938.13782-1-email@aabouzied.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
committed by
Thomas Huth
parent
e2abbeac7a
commit
e52ee00dab
@ -6,8 +6,8 @@
|
||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
||||
*/
|
||||
|
||||
#ifndef _PLUGIN_MEMORY_H_
|
||||
#define _PLUGIN_MEMORY_H_
|
||||
#ifndef PLUGIN_MEMORY_H
|
||||
#define PLUGIN_MEMORY_H
|
||||
|
||||
struct qemu_plugin_hwaddr {
|
||||
bool is_io;
|
||||
|
||||
@ -6,8 +6,8 @@
|
||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
||||
*/
|
||||
|
||||
#ifndef _SELFMAP_H_
|
||||
#define _SELFMAP_H_
|
||||
#ifndef SELFMAP_H
|
||||
#define SELFMAP_H
|
||||
|
||||
typedef struct {
|
||||
unsigned long start;
|
||||
|
||||
Reference in New Issue
Block a user