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
06f66373
Commit
06f66373
authored
Oct 19, 2021
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libwine: Avoid including wine/port.h.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
28d7d5ba
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
18 deletions
+11
-18
config.c
libs/wine/config.c
+3
-4
debug.c
libs/wine/debug.c
+3
-4
ldt.c
libs/wine/ldt.c
+2
-1
loader.c
libs/wine/loader.c
+2
-4
mmap.c
libs/wine/mmap.c
+1
-4
port.c
libs/wine/port.c
+0
-1
No files found.
libs/wine/config.c
View file @
06f66373
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include "wine/asm.h"
#ifdef __ASM_OBSOLETE
...
...
@@ -29,10 +28,10 @@
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <unistd.h>
#include <dlfcn.h>
#ifdef HAVE_PWD_H
#include <pwd.h>
#endif
...
...
libs/wine/debug.c
View file @
06f66373
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include "wine/asm.h"
#ifdef __ASM_OBSOLETE
...
...
@@ -29,9 +28,9 @@
#include <stdarg.h>
#include <string.h>
#include <ctype.h>
#i
fdef HAVE_SYS_STAT_H
#
include <sys/stat.h>
#
endif
#i
nclude <sys/types.h>
#include <sys/stat.h>
#
include <unistd.h>
#include "wine/debug.h"
...
...
libs/wine/ldt.c
View file @
06f66373
...
...
@@ -20,14 +20,15 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <stdlib.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <errno.h>
#include <unistd.h>
#include "windef.h"
#include "winbase.h"
...
...
libs/wine/loader.c
View file @
06f66373
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <ctype.h>
...
...
@@ -35,9 +34,8 @@
#ifdef HAVE_SYS_RESOURCE_H
# include <sys/resource.h>
#endif
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <unistd.h>
#include <dlfcn.h>
#ifdef __APPLE__
#include <crt_externs.h>
...
...
libs/wine/mmap.c
View file @
06f66373
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <ctype.h>
...
...
@@ -35,9 +34,7 @@
#ifdef HAVE_SYS_MMAN_H
#include <sys/mman.h>
#endif
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <unistd.h>
#ifdef HAVE_STDINT_H
# include <stdint.h>
#endif
...
...
libs/wine/port.c
View file @
06f66373
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include "wine/asm.h"
#ifdef __ASM_OBSOLETE
...
...
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