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
ea3342de
Commit
ea3342de
authored
Apr 13, 2003
by
Yorick Hardy
Committed by
Alexandre Julliard
Apr 13, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
errno should not be used as a variable name.
parent
074d293c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
sysdeps.c
scheduler/sysdeps.c
+4
-4
No files found.
scheduler/sysdeps.c
View file @
ea3342de
...
@@ -362,15 +362,15 @@ int SYSDEPS_GetUnixTid(void)
...
@@ -362,15 +362,15 @@ int SYSDEPS_GetUnixTid(void)
/* default errno before threading is initialized */
/* default errno before threading is initialized */
static
int
*
default_errno_location
(
void
)
static
int
*
default_errno_location
(
void
)
{
{
static
int
errno
;
static
int
static_
errno
;
return
&
errno
;
return
&
static_
errno
;
}
}
/* default h_errno before threading is initialized */
/* default h_errno before threading is initialized */
static
int
*
default_h_errno_location
(
void
)
static
int
*
default_h_errno_location
(
void
)
{
{
static
int
h_errno
;
static
int
static_
h_errno
;
return
&
h_errno
;
return
&
static_
h_errno
;
}
}
/* errno once threading is working */
/* errno once threading is working */
...
...
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