aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/lib_test.cpp
blob: c111f7cfaeb536d3800de18ca9d3770960b52f68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "lib.h"

void init()
{
	static bool init = true;
	printf("in lib_test %d\n", init);
	if (!init) return;
	init = false;
	X::a.put();
	putReg();
}