mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 12:38:12 +00:00
14 lines
233 B
C
14 lines
233 B
C
#pragma once
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__BEGIN_DECLS
|
|
|
|
typedef __builtin_va_list va_list;
|
|
|
|
#define va_start(v, l) __builtin_va_start(v, l)
|
|
#define va_end(v) __builtin_va_end(v)
|
|
#define va_arg(v, l) __builtin_va_arg(v, l)
|
|
|
|
__END_DECLS
|
|
|