/* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */1/******************************************************************************2*3* Name: accommon.h - Common include files for generation of ACPICA source4*5* Copyright (C) 2000 - 2025, Intel Corp.6*7*****************************************************************************/89#ifndef __ACCOMMON_H__10#define __ACCOMMON_H__1112/*13* Common set of includes for all ACPICA source files.14* We put them here because we don't want to duplicate them15* in the source code again and again.16*17* Note: The order of these include files is important.18*/19#include <acpi/acconfig.h> /* Global configuration constants */20#include "acmacros.h" /* C macros */21#include "aclocal.h" /* Internal data types */22#include "acobject.h" /* ACPI internal object */23#include "acstruct.h" /* Common structures */24#include "acglobal.h" /* All global variables */25#include "achware.h" /* Hardware defines and interfaces */26#include "acutils.h" /* Utility interfaces */27#ifndef ACPI_USE_SYSTEM_CLIBRARY28#include "acclib.h" /* C library interfaces */29#endif /* !ACPI_USE_SYSTEM_CLIBRARY */3031#endif /* __ACCOMMON_H__ */323334