blob: 322742d11f897dc49550de011a1d667100e05805 [file] [log] [blame]
Lev Walkinefa53fc2005-03-04 09:05:14 +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 <Type.h>
9
10int
11main(int ac, char **av) {
12 Type_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}