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:
Ahmed Abouzied
2021-06-05 19:49:38 +02:00
committed by Thomas Huth
parent e2abbeac7a
commit e52ee00dab
10 changed files with 20 additions and 20 deletions

View File

@@ -9,8 +9,8 @@
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef _PLUGIN_INTERNAL_H_
#define _PLUGIN_INTERNAL_H_
#ifndef PLUGIN_INTERNAL_H
#define PLUGIN_INTERNAL_H
#include <gmodule.h>
#include "qemu/qht.h"