X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/18ea57e19bece03d36c897a540f47f01a5bc06e6..HEAD:/netdissect-stdinc.h diff --git a/netdissect-stdinc.h b/netdissect-stdinc.h index adb0b4cb..15c3e284 100644 --- a/netdissect-stdinc.h +++ b/netdissect-stdinc.h @@ -139,11 +139,6 @@ * 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. @@ -151,11 +146,6 @@ * 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 @@ -246,11 +236,6 @@ typedef char *caddr_t; * 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 */ /*