Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenzo Ferrillo
wine
Commits
5afde5f3
Commit
5afde5f3
authored
13 years ago
by
Daniel Lehman
Committed by
Alexandre Julliard
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
msvcrt: Add declarations to stdlib.h for _strtoui64 and _strtoi64.
parent
3bb04621
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/msvcrt/stdlib.h
+4
-0
4 additions, 0 deletions
include/msvcrt/stdlib.h
with
4 additions
and
0 deletions
include/msvcrt/stdlib.h
+
4
−
0
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
*
));
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment