aboutsummaryrefslogtreecommitdiffstats
path: root/asn1c/tests/check-src/check-73.c
blob: 9d331415b746f0429fbb0930c6c09460ea0b708d (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
25
26
27
28
#undef	NDEBUG
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <string.h>
#include <assert.h>

#include <Epyt.h>

int
main(int ac, char **av) {
	Type_t t;
	Epyt_t ept;
	Ypet_t ypt;

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

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

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

	return 0;
}