summaryrefslogtreecommitdiff
path: root/test.c
blob: 31dee497f27cd4fbdf7fa86b8c17ee47ac5108a8 (plain)
1
2
3
4
5
6
7
8
9
// temporary test file

#include <stdlib.h>

int f() { return 13; }

void entry(void) {
	exit(f());
}