summaryrefslogtreecommitdiff
path: root/signed.c
blob: 050b66fe8f11c341422861ed964edd90f9824bc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <u.h>
#include <libc.h>

void
main()
{
	int x;

	x = 25;
	print("n:%d,s:%d\n", x, (x>>31));
	x *= -1;
	print("n:%d,s:%d\n", x, (x>>31));
	exits(0);
}