This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
Register
Sign In
jdk-build-libs
/
json-c
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
11
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
On VS 2013 and newer, actually use strtoll instead of redefining it to _strtoi64.
tags/json-c-0.13-20171207
Eric Haszlakiewicz
7 years ago
parent
04788421fe
commit
05c85ddc21
1 changed files
with
4 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-1
json_util.c
+ 4
- 1
json_util.c
View File
@@ -39,7 +39,10 @@
#endif /* HAVE_UNISTD_H */
#ifdef WIN32
# define strtoll _strtoi64
# if MSC_VER < 1800
/* strtoll is available only since Visual Studio 2013 */
# define strtoll _strtoi64
# endif
# define WIN32_LEAN_AND_MEAN
# include <windows.h>
# include <io.h>
Write
Preview
Loading…
Cancel
Save