blob: 4a6138547bc3b7fa6901648d55cd97203a785b80 [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +00001#undef NDEBUG
2#include <stdio.h>
3#include <stdlib.h>
4#include <sys/types.h>
5#include <string.h>
6#include <assert.h>
7
8#include <Test-structure-1.h>
Lev Walkin906654e2004-09-10 15:49:15 +00009#include <Choice-1.h>
Lev Walkinf15320b2004-06-03 03:38:44 +000010
11int
12main(int ac, char **av) {
13 Test_structure_1_t ts1;
Lev Walkin906654e2004-09-10 15:49:15 +000014 Choice_1_t cs1;
Lev Walkinf15320b2004-06-03 03:38:44 +000015
Lev Walkind9bd7752004-06-05 08:17:50 +000016 (void)ac; /* Unused argument */
17 (void)av; /* Unused argument */
18
Lev Walkinf15320b2004-06-03 03:38:44 +000019 memset(&ts1, 0, sizeof(ts1));
Lev Walkin51bb0a72004-09-15 11:54:10 +000020 memset(&cs1, 0, sizeof(cs1));
Lev Walkinf15320b2004-06-03 03:38:44 +000021
22 /*
23 * No plans to fill it up: just checking whether it compiles or not.
24 */
25
26 return 0;
27}