xref: /third_party/musl/porting/liteos_m/kernel/include/stdarg.h
  • Home
  • History
  • Annotate Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/musl/porting/liteos_m/kernel/include/
1570af302Sopenharmony_ci#ifndef _STDARG_H
2570af302Sopenharmony_ci#define _STDARG_H
3570af302Sopenharmony_ci
4570af302Sopenharmony_ci#ifdef __cplusplus
5570af302Sopenharmony_ciextern "C" {
6570af302Sopenharmony_ci#endif
7570af302Sopenharmony_ci
8570af302Sopenharmony_ci#define __NEED_va_list
9570af302Sopenharmony_ci
10570af302Sopenharmony_ci#include <bits/alltypes.h>
11570af302Sopenharmony_ci
12570af302Sopenharmony_ci#define va_start(v,l)   __builtin_va_start(v,l)
13570af302Sopenharmony_ci#define va_end(v)       __builtin_va_end(v)
14570af302Sopenharmony_ci#define va_arg(v,l)     __builtin_va_arg(v,l)
15570af302Sopenharmony_ci#define va_copy(d,s)    __builtin_va_copy(d,s)
16570af302Sopenharmony_ci
17570af302Sopenharmony_ci#ifdef __cplusplus
18570af302Sopenharmony_ci}
19570af302Sopenharmony_ci#endif
20570af302Sopenharmony_ci
21570af302Sopenharmony_ci#endif
22

Indexes created Thu Nov 07 10:32:03 CST 2024