Imported Upstream version 1.1.11
[platform/upstream/cdrkit.git] / include / test_VA_LIST_IS_ARRAY.c
1 /*
2  * This file has been modified for the cdrkit suite.
3  *
4  * The behaviour and appearence of the program code below can differ to a major
5  * extent from the version distributed by the original author(s).
6  *
7  * For details, see Changelog file distributed with the cdrkit package. If you
8  * received this file from another source then ask the distributing person for
9  * a log of modifications.
10  *
11  */
12
13 #include <stdarg.h>
14
15 int main() {
16
17 va_list a, b;
18
19 a = b;
20 ; return 0; }
21