CHERIoT RTOS
A compartmentalised RTOS for CHERIoT hardware
Loading...
Searching...
No Matches
stdarg.h
1// Copyright Microsoft and CHERIoT Contributors.
2// SPDX-License-Identifier: MIT
3
4#ifndef __STDARG_H__
5#define __STDARG_H__
6
7/*
8 * Minimalist contents of a traditional stdarg.h required to use printf().
9 */
10
11typedef __builtin_va_list va_list;
12#define va_start(v, l) __builtin_va_start((v), l)
13#define va_end __builtin_va_end
14#define va_arg __builtin_va_arg
15#define va_copy __builtin_va_copy
16
17#endif /* _STDARG_H_ */