@@ -23,10 +23,14 @@ # define __STDC_CONSTANT_MACROS #endif #include #include + +#ifdef _PSP +# define INTMAX_MAX LONG_LONG_MAX +#endif #ifdef __GNUC__ # define OF_INLINE inline __attribute__((always_inline)) # define OF_LIKELY(cond) __builtin_expect(!!(cond), 1) # define OF_UNLIKELY(cond) __builtin_expect(!!(cond), 0)