Skip to content
Snippets Groups Projects
Commit 35d00cba authored by Martin Stjernholm's avatar Martin Stjernholm
Browse files

Fixed warning about too large constant(?).

Rev: src/global.h:1.63
parent 63a73085
No related branches found
No related tags found
Loading
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
\*/ \*/
/* /*
* $Id: global.h,v 1.62 2001/06/10 00:22:47 grubba Exp $ * $Id: global.h,v 1.63 2001/07/02 16:25:29 mast Exp $
*/ */
#ifndef GLOBAL_H #ifndef GLOBAL_H
#define GLOBAL_H #define GLOBAL_H
...@@ -203,7 +203,7 @@ void *alloca(); ...@@ -203,7 +203,7 @@ void *alloca();
#endif #endif
#define MAX_INT32 2147483647 #define MAX_INT32 2147483647
#define MIN_INT32 -(INT32)2147483648 #define MIN_INT32 (-2147483647-1)
#define INT16 short #define INT16 short
#define INT8 char #define INT8 char
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment