• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) HiSilicon (Shanghai) Technologies Co., Ltd. 2022-2022. All rights reserved.
3  * Description: mini string.h
4  */
5 
6 #ifndef __STDARG_H__
7 #define __STDARG_H__
8 
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12 
13 #define __NEED_va_list
14 #include <bits/alltypes.h>
15 
16 #define va_copy(d,s)    __builtin_va_copy(d,s)
17 #define va_start(v,l)   __builtin_va_start(v,l)
18 #define va_arg(v,l)     __builtin_va_arg(v,l)
19 #define va_end(v)       __builtin_va_end(v)
20 
21 #ifdef __cplusplus
22 }
23 #endif
24 
25 #endif
26