software/libbase: fix stupid mistake in limits.h

This commit is contained in:
Sebastien Bourdeauducq 2012-05-28 19:32:38 +02:00
parent 2428057c2f
commit e115eb08fb
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
#ifndef __LIMITS_H #ifndef __LIMITS_H
#define __LIMITS_H #define __LIMITS_H
#define INT_MIN 0x7fffffff #define INT_MIN 0x80000000
#define INT_MAX 0x80000000 #define INT_MAX 0x7fffffff
#define SHRT_MIN 0x8000 #define SHRT_MIN 0x8000
#define SHRT_MAX 0x7fff #define SHRT_MAX 0x7fff