summaryrefslogtreecommitdiff
path: root/tests/dylib-test.c
blob: ae824b0a388e4098fa2ba70ff72d67a5406c78fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "dylib.h"
#include <stdlib.h>
#include <stdio.h>

void entry(void) {
	the_number = 7;
	printf("%d\n",the_number);
	bigger();
	printf("%d\n",the_number);
	
	exit(0);
}