byte is unsigned (does not really matter)

svn: r3666
This commit is contained in:
Eli Barzilay 2006-07-09 21:08:48 +00:00
parent 49667529da
commit 794a1725e6

View File

@ -1,6 +1,6 @@
#include <stdlib.h>
typedef signed char byte;
typedef unsigned char byte;
int add1_int_int (int x) { return x + 1; }
int add1_byte_int (byte x) { return x + 1; }