(svn r19177) -Codechange: introduce INT8_MIN/MAX and UINT8_MAX for MSVC.

This commit is contained in:
rubidium 2010-02-20 22:58:25 +00:00
parent 045bee5229
commit e2adecd927
1 changed files with 3 additions and 0 deletions

View File

@ -51,6 +51,9 @@
#define UINT16_MAX (65535U)
#define INT16_MAX (32767)
#define INT16_MIN (-INT16_MAX - 1)
#define UINT8_MAX (255)
#define INT8_MAX (127)
#define INT8_MIN (-INT8_MAX - 1)
#endif
#include <cstdio>