Files
kernel/arch/amd64/acpi_osl_printf.c
2020-02-04 12:45:15 +02:00

14 lines
286 B
C

#include "acpi.h"
#include "sys/debug.h"
void AcpiOsPrintf(const char *Format, ...) {
va_list args;
va_start(args, Format);
AcpiOsVprintf(Format, args);
va_end(args);
}
void AcpiOsVprintf(const char *Format, va_list args) {
debugfv(DEBUG_DEFAULT, Format, args);
}