mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2024-12-28 20:43:41 +01:00
9 lines
184 B
C
9 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
|
|
|