12345678910111213141516171819202122232425262728293031323334353637 |
- #ifndef _REPL_INTTYPES_H
- #define _REPL_INTTYPES_H
- #include <stdint.h>
- #if __DJGPP__ > 2 || __DJGPP_MINOR__ >= 4
- #include_next <inttypes.h>
- #else
- #include <stdlib.h>
- #define strtoumax strtoull
- #define strtoimax strtoll
- #endif
- #endif
|