Sign in
cmake
/
cmake
/
39e5a4da220c1ddcd73d74d26ed55a7418add215
/
.
/
Tests
/
CompileFeatures
/
c_variadic_macros.c
blob: 4da111e6288b749137047ef4f5a8d43530778f89 [
file
] [
log
] [
blame
]
int
someFunc
(
int
i1
,
char
c
,
int
i2
)
{
(
void
)
i1
;
(
void
)
c
;
(
void
)
i2
;
return
0
;
}
#define
FUNC_WRAPPER
(...)
someFunc
(
__VA_ARGS__
)
void
otherFunc
()
{
FUNC_WRAPPER
(
42
,
'a'
,
7
);
}