Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
5235526b
Commit
5235526b
authored
Oct 18, 2022
by
Alex Henrie
Committed by
Alexandre Julliard
Oct 19, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Move strto[iu]max(_l) from stdlib.h to inttypes.h.
Needed to compile PuTTY.
parent
ebbcc10b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
inttypes.h
include/msvcrt/inttypes.h
+5
-0
stdlib.h
include/msvcrt/stdlib.h
+0
-4
No files found.
include/msvcrt/inttypes.h
View file @
5235526b
...
...
@@ -234,6 +234,11 @@ typedef struct {
#define SCNuPTR "u"
#endif
_ACRTIMP
__int64
__cdecl
strtoimax
(
const
char
*
,
char
**
,
int
);
_ACRTIMP
__int64
__cdecl
strtoimax_l
(
const
char
*
,
char
**
,
int
,
_locale_t
);
_ACRTIMP
unsigned
__int64
__cdecl
strtoumax
(
const
char
*
,
char
**
,
int
);
_ACRTIMP
unsigned
__int64
__cdecl
strtoumax_l
(
const
char
*
,
char
**
,
int
,
_locale_t
);
#ifdef __cplusplus
}
#endif
...
...
include/msvcrt/stdlib.h
View file @
5235526b
...
...
@@ -229,10 +229,6 @@ _ACRTIMP __msvcrt_long __cdecl strtol(const char*,char**,int);
_ACRTIMP
__msvcrt_ulong
__cdecl
strtoul
(
const
char
*
,
char
**
,
int
);
_ACRTIMP
__int64
__cdecl
_strtoll_l
(
const
char
*
,
char
**
,
int
,
_locale_t
);
_ACRTIMP
unsigned
__int64
__cdecl
_strtoull_l
(
const
char
*
,
char
**
,
int
,
_locale_t
);
_ACRTIMP
__int64
__cdecl
strtoimax
(
const
char
*
,
char
**
,
int
);
_ACRTIMP
__int64
__cdecl
strtoimax_l
(
const
char
*
,
char
**
,
int
,
_locale_t
);
_ACRTIMP
unsigned
__int64
__cdecl
strtoumax
(
const
char
*
,
char
**
,
int
);
_ACRTIMP
unsigned
__int64
__cdecl
strtoumax_l
(
const
char
*
,
char
**
,
int
,
_locale_t
);
_ACRTIMP
__int64
__cdecl
_strtoi64
(
const
char
*
,
char
**
,
int
);
_ACRTIMP
__int64
__cdecl
_strtoi64_l
(
const
char
*
,
char
**
,
int
,
_locale_t
);
_ACRTIMP
unsigned
__int64
__cdecl
_strtoui64
(
const
char
*
,
char
**
,
int
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment