mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2024-12-28 04:23:41 +01:00
10 lines
184 B
C
10 lines
184 B
C
|
#include <stdint.h>
|
||
|
|
||
|
#define INT_MIN INT32_MIN
|
||
|
#define INT_MAX INT32_MAX
|
||
|
#define LONG_MIN INT32_MIN
|
||
|
#define LONG_MAX INT32_MAX
|
||
|
#define LLONG_MIN INT64_MIN
|
||
|
#define LLONG_MAX INT64_MAX
|
||
|
|