blob: 616387135806377afbb8fbd07ce542f2db8658b7 [file] [log] [blame]
Lev Walkinda9a3b82005-08-16 17:00:21 +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 <T.h>
9
10int
11main(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}