mirror of
https://gitlab.com/qemu-project/qemu
synced 2025-04-29 19:32:08 +08:00

The "qemu/accel.h" header is implicitly pulled in. Include it explicitly in order to avoid when refactoring unrelated headers: accel/accel-internal.h:13:32: error: unknown type name 'AccelClass' 13 | void accel_init_ops_interfaces(AccelClass *ac); | ^ Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-Id: <20250417165430.58213-6-philmd@linaro.org>
18 lines
356 B
C
18 lines
356 B
C
/*
|
|
* QEMU accel internal functions
|
|
*
|
|
* Copyright 2021 SUSE LLC
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*/
|
|
|
|
#ifndef ACCEL_INTERNAL_H
|
|
#define ACCEL_INTERNAL_H
|
|
|
|
#include "qemu/accel.h"
|
|
|
|
void accel_init_ops_interfaces(AccelClass *ac);
|
|
|
|
#endif /* ACCEL_SYSTEM_H */
|