aboutsummaryrefslogtreecommitdiff
path: root/misc/cgo/test/issue4339.c
blob: 15d0004078cfd1cb175e24ff3945082650aba044 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdio.h>
#include "issue4339.h"

static void
impl(void)
{
	//printf("impl\n");
}

Issue4339 exported4339 = {"bar", impl};

void
handle4339(Issue4339 *x)
{
	//printf("handle\n");
	x->bar();
	//printf("done\n");
}