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

#include <Type.h>

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

	(void)ac;	/* Unused argument */
	(void)av;	/* Unused argument */

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

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

	return 0;
}