]> granicus.if.org Git - graphviz/commitdiff
remove Windows strto[u]ll redirects
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 19 Sep 2020 00:55:02 +0000 (17:55 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 25 Sep 2020 15:21:41 +0000 (08:21 -0700)
These functions exist on Windows. There is no need to remap them.

lib/expr/exlib.h

index 776f7a4172f9f9613997fc09d4ae3e6bcf5421d2..46829bb066d40f9a0e726bb730ef52b353fd6a91 100644 (file)
@@ -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