Added va_* types
This commit is contained in:
parent
cfa24990b5
commit
0210d27a40
1 changed files with 5 additions and 0 deletions
|
@ -35,6 +35,11 @@ typedef unsigned long UINTPTR;
|
||||||
typedef long SSIZE;
|
typedef long SSIZE;
|
||||||
typedef unsigned long SIZE;
|
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 UINTN EFI_STATUS;
|
||||||
typedef VOID *EFI_HANDLE;
|
typedef VOID *EFI_HANDLE;
|
||||||
typedef VOID *EFI_EVENT;
|
typedef VOID *EFI_EVENT;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue