blob: 616387135806377afbb8fbd07ce542f2db8658b7 [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +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
Lev Walkind9bd7752004-06-05 08:17:50 +000014 (void)ac; /* Unused argument */
15 (void)av; /* Unused argument */
16
Lev Walkinf15320b2004-06-03 03:38:44 +000017 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}