NativeEnumerated.c vars NULL init and check
[com/asn1c.git] / tests / tests-c-compiler / check-src / check-73.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 <Epyt.h>
9
10 int
11 main(int ac, char **av) {
12         Type_t t;
13         Epyt_t ept;
14         Ypet_t ypt;
15
16         (void)ac;       /* Unused argument */
17         (void)av;       /* Unused argument */
18
19         memset(&t, 0, sizeof(t));
20         memset(&ept, 0, sizeof(ept));
21         memset(&ypt, 0, sizeof(ypt));
22
23         /*
24          * No plans to fill it up: just checking whether it compiles or not.
25          */
26
27         return 0;
28 }