summaryrefslogtreecommitdiff
path: root/util/romcc/tests/linux_test11.c
blob: 9c1183fd87d15b46aad17ed31480f05c3975f5f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "linux_syscall.h"
#include "linux_console.h"

static void test(void)
{
	signed char x;
	x = -1;
	print_debug_hex32(x);
	print_debug("\n");
	_exit(0);
}