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
5afde5f3
Commit
5afde5f3
authored
Jan 13, 2012
by
Daniel Lehman
Committed by
Alexandre Julliard
Apr 19, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Add declarations to stdlib.h for _strtoui64 and _strtoi64.
parent
3bb04621
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
stdlib.h
include/msvcrt/stdlib.h
+4
-0
No files found.
include/msvcrt/stdlib.h
View file @
5afde5f3
...
...
@@ -201,6 +201,10 @@ void __cdecl srand(unsigned int);
double
__cdecl
strtod
(
const
char
*
,
char
**
);
__msvcrt_long
__cdecl
strtol
(
const
char
*
,
char
**
,
int
);
__msvcrt_ulong
__cdecl
strtoul
(
const
char
*
,
char
**
,
int
);
__int64
__cdecl
_strtoi64
(
const
char
*
,
char
**
,
int
);
__int64
__cdecl
_strtoi64_l
(
const
char
*
,
char
**
,
int
,
_locale_t
);
unsigned
__int64
__cdecl
_strtoui64
(
const
char
*
,
char
**
,
int
);
unsigned
__int64
__cdecl
_strtoui64_l
(
const
char
*
,
char
**
,
int
,
_locale_t
);
int
__cdecl
system
(
const
char
*
);
void
*
__cdecl
bsearch
(
const
void
*
,
const
void
*
,
size_t
,
size_t
,
int
(
*
)(
const
void
*
,
const
void
*
));
void
__cdecl
qsort
(
void
*
,
size_t
,
size_t
,
int
(
*
)(
const
void
*
,
const
void
*
));
...
...
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