Added va_* types

This commit is contained in:
Jozef Nagy 2024-04-01 02:43:03 +02:00
parent cfa24990b5
commit 0210d27a40
No known key found for this signature in database
GPG key ID: 5B49DC29F09685D6

View file

@ -35,6 +35,11 @@ typedef unsigned long UINTPTR;
typedef long SSIZE;
typedef unsigned long SIZE;
typedef __builtin_va_list VA_LIST;
#define va_start(ap, arg) __builtin_va_start(ap, arg)
#define va_arg(ap, type) __builtin_va_arg(ap, type)
#define va_end(ap) __builtin_va_end(ap)
typedef UINTN EFI_STATUS;
typedef VOID *EFI_HANDLE;
typedef VOID *EFI_EVENT;