Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
ef9a0f3b
Commit
ef9a0f3b
authored
Nov 03, 2021
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Don't include stdlib.h in wine/port.h.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
cf04fe76
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
10 additions
and
4 deletions
+10
-4
gnutls.c
dlls/bcrypt/gnutls.c
+1
-0
device.c
dlls/mountmgr.sys/device.c
+1
-0
mountmgr.c
dlls/mountmgr.sys/mountmgr.c
+1
-0
unixlib.c
dlls/netapi32/unixlib.c
+1
-0
schannel_gnutls.c
dlls/secur32/schannel_gnutls.c
+1
-0
make_vulkan
dlls/winevulkan/make_vulkan
+3
-2
vulkan_thunks.c
dlls/winevulkan/vulkan_thunks.c
+2
-1
port.h
include/wine/port.h
+0
-1
No files found.
dlls/bcrypt/gnutls.c
View file @
ef9a0f3b
...
...
@@ -28,6 +28,7 @@
#ifdef HAVE_GNUTLS_CIPHER_INIT
#include <stdarg.h>
#include <stdlib.h>
#include <assert.h>
#include <gnutls/gnutls.h>
#include <gnutls/crypto.h>
...
...
dlls/mountmgr.sys/device.c
View file @
ef9a0f3b
...
...
@@ -25,6 +25,7 @@
#include <errno.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/time.h>
...
...
dlls/mountmgr.sys/mountmgr.c
View file @
ef9a0f3b
...
...
@@ -31,6 +31,7 @@
#endif
#include <stdarg.h>
#include <stdlib.h>
#include <unistd.h>
#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
...
...
dlls/netapi32/unixlib.c
View file @
ef9a0f3b
...
...
@@ -29,6 +29,7 @@
#ifdef SONAME_LIBNETAPI
#include <stdarg.h>
#include <stdlib.h>
#include <fcntl.h>
#include <errno.h>
#ifdef HAVE_SYS_WAIT_H
...
...
dlls/secur32/schannel_gnutls.c
View file @
ef9a0f3b
...
...
@@ -28,6 +28,7 @@
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#ifdef SONAME_LIBGNUTLS
#include <gnutls/gnutls.h>
...
...
dlls/winevulkan/make_vulkan
View file @
ef9a0f3b
...
...
@@ -2673,8 +2673,9 @@ class VkGenerator(object):
f
.
write
(
"#pragma makedep unix
\n
"
)
f
.
write
(
"#endif
\n\n
"
)
f
.
write
(
"#include
\"
config.h
\"\n
"
)
f
.
write
(
"#include
\"
wine/port.h
\"\n\n
"
)
f
.
write
(
"#include
\"
config.h
\"\n\n
"
)
f
.
write
(
"#include <stdlib.h>
\n\n
"
)
f
.
write
(
"#include
\"
vulkan_private.h
\"\n\n
"
)
...
...
dlls/winevulkan/vulkan_thunks.c
View file @
ef9a0f3b
...
...
@@ -14,7 +14,8 @@
#endif
#include "config.h"
#include "wine/port.h"
#include <stdlib.h>
#include "vulkan_private.h"
...
...
include/wine/port.h
View file @
ef9a0f3b
...
...
@@ -30,7 +30,6 @@
#endif
#include <sys/types.h>
#include <stdlib.h>
/****************************************************************
...
...
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