]> granicus.if.org Git - postgresql/commit
Recognize that MSVC can support strtoll() and strtoull().
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 18 May 2018 16:52:28 +0000 (12:52 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 18 May 2018 16:52:28 +0000 (12:52 -0400)
commit63d3e787f9544d0f2f8b39cf608e2c99a5896bde
tree17c8fda82879ccc2cd925a69c58be181526359b0
parent048caa5560da33d63bbcbb2063c8ecd48994c99b
Recognize that MSVC can support strtoll() and strtoull().

This is needed for full support of "long long" variables in ecpg, but
the previous patch for bug #15080 (commits 51057feaa et al) missed it.
In MSVC versions where the functions don't exist under those names,
we can nonetheless use _strtoi64() and _strtoui64().

Like the previous patch, back-patch all the way.

Dang Minh Huong

Discussion: https://postgr.es/m/151935568942.1461.14623890240535309745@wrigleys.postgresql.org
src/include/pg_config.h.win32