mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-11-24 20:20:35 +00:00
* src/config.h.W32 [TCC]: Only redefine strtoll if not defined
This commit is contained in:
parent
11f7198f64
commit
6b45f89adb
1 changed files with 8 additions and 4 deletions
|
@ -343,11 +343,15 @@ this program. If not, see <https://www.gnu.org/licenses/>. */
|
|||
/* #undef HAVE_STRSIGNAL */
|
||||
|
||||
/* Define to 1 if you have the `strtoll' function. */
|
||||
#ifdef __TINYC__
|
||||
#define strtoll _strtoi64
|
||||
#define strtoull _strtoui64
|
||||
#endif
|
||||
#define HAVE_STRTOLL 1
|
||||
#ifdef __TINYC__
|
||||
# ifndef strtoll
|
||||
# define strtoll _strtoi64
|
||||
# endif
|
||||
# ifndef strtoull
|
||||
# define strtoull _strtoui64
|
||||
# endif
|
||||
#endif
|
||||
|
||||
/* Define to 1 if `d_type' is a member of `struct dirent'. */
|
||||
/* SV 57152: MinGW64 version of dirent doesn't support d_type. */
|
||||
|
|
Loading…
Reference in a new issue