byte is unsigned (does not really matter)
svn: r3666
This commit is contained in:
parent
49667529da
commit
794a1725e6
|
@ -1,6 +1,6 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
typedef signed char byte;
|
typedef unsigned char byte;
|
||||||
|
|
||||||
int add1_int_int (int x) { return x + 1; }
|
int add1_int_int (int x) { return x + 1; }
|
||||||
int add1_byte_int (byte x) { return x + 1; }
|
int add1_byte_int (byte x) { return x + 1; }
|
||||||
|
|
Loading…
Reference in New Issue
Block a user