* strtoint64_t().
*/
#define strtoint64_t strtoll
-
- /*
- * And we have LL as a suffix for constants, so use that.
- */
- #define INT64_T_CONSTANT(constant) (constant##LL)
#else
/*
* Non-Microsoft compiler.
* XXX - should we use strtoll or should we use _strtoi64()?
*/
#define strtoint64_t strtoll
-
- /*
- * Assume LL works.
- */
- #define INT64_T_CONSTANT(constant) (constant##LL)
#endif
#ifdef _MSC_VER
*/
#define isatty _isatty
#define stat _stat
- #define strdup _strdup
#define open _open
#define read _read
#define close _close
* Assume all UN*Xes have strtoll(), and use it for strtoint64_t().
*/
#define strtoint64_t strtoll
-
-/*
- * Assume LL works.
- */
-#define INT64_T_CONSTANT(constant) (constant##LL)
#endif /* _WIN32 */
/*