616387135806377afbb8fbd07ce542f2db8658b7
[com/asn1c.git] / tests / tests-c-compiler / check-src / check-39.c
1 #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 <T.h>
9
10 int
11 main(int ac, char **av) {
12         T_t t;
13
14         (void)ac;       /* Unused argument */
15         (void)av;       /* Unused argument */
16
17         memset(&t, 0, sizeof(t));
18
19         /*
20          * No plans to fill it up: just checking whether it compiles or not.
21          */
22
23         return 0;
24 }