summaryrefslogtreecommitdiff
path: root/tst.c
blob: 16cd8834a185d469fa930e509d04cec63f2dd6a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <glib/gmacros.h>
#include <glib/gtypes.h>
#include <glib.h>

int tst(void)
{
	unsigned short t1=20;
	unsigned short t2=10;
	return t2-t1;
}

int main(int argc, char **argv)
{
	printf("res=%d\n", tst());
}