8 lines
140 B
C
8 lines
140 B
C
#pragma once
|
|
|
|
#include <uacpi/helpers.h>
|
|
|
|
#define UACPI_ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
|
|
|
#define UACPI_UNUSED(x) (void)(x)
|