1#pragma once
2
3#include <uacpi/helpers.h>
4
5#define UACPI_ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
6
7#define UACPI_UNUSED(x) (void)(x)
8