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
3944090e
Commit
3944090e
authored
May 08, 2002
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't need to reference external errno since non-reentrant Xlib is no
longer supported.
parent
019a7f3d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
errno.c
library/errno.c
+6
-6
No files found.
library/errno.c
View file @
3944090e
...
...
@@ -18,25 +18,25 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/* Get pointers to the static errno and h_errno variables used by Xlib. This
must be done before including <errno.h> makes the variables invisible. */
#include "config.h"
/* default errno before threading is initialized */
static
int
*
default_errno_location
(
void
)
{
extern
int
errno
;
static
int
errno
;
return
&
errno
;
}
/* default h_errno before threading is initialized */
static
int
*
default_h_errno_location
(
void
)
{
extern
int
h_errno
;
static
int
h_errno
;
return
&
h_errno
;
}
int
*
(
*
wine_errno_location
)(
void
)
=
default_errno_location
;
int
*
(
*
wine_h_errno_location
)(
void
)
=
default_h_errno_location
;
#include "config.h"
/***********************************************************************
* __errno_location/__error/___errno
*
...
...
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