Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
emscripten-core
GitHub Repository: emscripten-core/emscripten
Path: blob/main/system/include/compat/stdarg.h
6171 views
1
#ifndef _COMPAT_STDARG_H
2
#define _COMPAT_STDARG_H
3
4
#ifdef __cplusplus
5
extern "C" {
6
#endif
7
8
#define __va_copy(d,s) __builtin_va_copy(d,s)
9
10
#ifdef __cplusplus
11
}
12
#endif
13
14
#include_next <stdarg.h>
15
16
#endif
17
18