mirror of
https://github.com/Echelon9/cxbx-shogun.git
synced 2025-04-02 10:41:47 -04:00
12 lines
165 B
C
12 lines
165 B
C
|
|
#ifndef _LIMITS
|
|
#define _LIMITS
|
|
|
|
|
|
|
|
#define LONG_MIN (-2147483647-1)
|
|
#define LONG_MAX (2147483647)
|
|
#define ULONG_MAX (0xffffffff)
|
|
|
|
|
|
#endif // _LIMITS
|