blob: 9d331415b746f0429fbb0930c6c09460ea0b708d [file] [log] [blame]
Lev Walkinc6c49c82005-03-09 22:09:26 +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 <Epyt.h>
9
10int
11main(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}