aboutsummaryrefslogtreecommitdiffstats
path: root/asn1c/tests/check-33.c
blob: 14f5377a578162391ce39841e518dc8b13b40163 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#undef	NDEBUG
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <string.h>
#include <assert.h>

#include <T.h>

int
main(int ac, char **av) {
	T_t t;

	memset(&t, 0, sizeof(t));

	/*
	 * No plans to fill it up: just checking whether it compiles or not.
	 */

	return 0;
}