Fix an out-by-one in the definition of INT_MAX.

INT_MAX wound up being INT_MIN :/
This commit is contained in:
Bill Currie 2012-11-12 10:28:31 +09:00
parent 6ec5bb1884
commit dc22d06905

View file

@ -5,7 +5,7 @@
#ifndef __ruamoko_runtime_h_
#define __ruamoko_runtime_h_
#define INT_MAX 2147483648
#define INT_MAX 2147483647
#define INT_MIN (-INT_MAX - 1)
#define UINT_MAX 4294967295U