mirror of
https://github.com/ivoszbg/uniLoader.git
synced 2025-08-02 14:41:22 +00:00
17 lines
456 B
C
17 lines
456 B
C
/* SPDX-License-Identifier: MIT */
|
|
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright (c) 2024, Ivaylo Ivanov <ivo.ivanov.ivanov1@gmail.com>
|
|
*/
|
|
#ifndef _STDARG_H
|
|
#define _STDARG_H
|
|
|
|
typedef __builtin_va_list va_list;
|
|
|
|
#define va_start(ap, last) __builtin_va_start(ap, last)
|
|
#define va_arg(ap, type) __builtin_va_arg(ap, type)
|
|
#define va_end(ap) __builtin_va_end(ap)
|
|
#define va_copy(dest, src) __builtin_va_copy(dest, src)
|
|
|
|
#endif /* _STDARG_H */
|