From 7df05a1ef5eee95f5d62266742d23ff0bf5c7022 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Fri, 18 Sep 2020 17:55:02 -0700 Subject: [PATCH] remove Windows strto[u]ll redirects These functions exist on Windows. There is no need to remap them. --- lib/expr/exlib.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/expr/exlib.h b/lib/expr/exlib.h index 776f7a417..46829bb06 100644 --- a/lib/expr/exlib.h +++ b/lib/expr/exlib.h @@ -181,10 +181,6 @@ extern const char* exversion; extern Exstate_t expr; extern int exparse(void); /* yacc should do this */ -#if defined(_WIN32) -#define strtoll _strtoi64 -#define strtoull _strtoui64 -#endif extern Sflong_t strToL(char *, char **); #endif -- 2.40.0