Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
f9ee0d2f
Commit
f9ee0d2f
authored
Oct 07, 2021
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tools: Avoid using wine/port.h.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ae9f64c4
Hide whitespace changes
Inline
Side-by-side
Showing
57 changed files
with
11 additions
and
236 deletions
+11
-236
make_xftmpl.c
tools/make_xftmpl.c
+0
-4
sfnt2fon.c
tools/sfnt2fon/sfnt2fon.c
+0
-1
client.c
tools/widl/client.c
+0
-4
header.c
tools/widl/header.c
+0
-3
proxy.c
tools/widl/proxy.c
+0
-4
register.c
tools/widl/register.c
+0
-4
server.c
tools/widl/server.c
+0
-4
typegen.c
tools/widl/typegen.c
+0
-4
typelib.c
tools/widl/typelib.c
+1
-6
utils.c
tools/widl/utils.c
+0
-1
widl.c
tools/widl/widl.c
+0
-4
write_msft.c
tools/widl/write_msft.c
+1
-3
import.c
tools/winebuild/import.c
+0
-7
main.c
tools/winebuild/main.c
+0
-1
parser.c
tools/winebuild/parser.c
+0
-1
relay.c
tools/winebuild/relay.c
+0
-1
res16.c
tools/winebuild/res16.c
+0
-5
res32.c
tools/winebuild/res32.c
+0
-5
spec16.c
tools/winebuild/spec16.c
+0
-1
spec32.c
tools/winebuild/spec32.c
+0
-1
utils.c
tools/winebuild/utils.c
+0
-7
debug.c
tools/winedump/debug.c
+0
-14
dos.c
tools/winedump/dos.c
+0
-13
dump.c
tools/winedump/dump.c
+0
-11
emf.c
tools/winedump/emf.c
+1
-8
font.c
tools/winedump/font.c
+0
-10
le.c
tools/winedump/le.c
+0
-4
lib.c
tools/winedump/lib.c
+0
-10
lnk.c
tools/winedump/lnk.c
+2
-9
main.c
tools/winedump/main.c
+0
-2
mf.c
tools/winedump/mf.c
+1
-2
minidump.c
tools/winedump/minidump.c
+1
-3
misc.c
tools/winedump/misc.c
+0
-2
msc.c
tools/winedump/msc.c
+0
-14
msmangle.c
tools/winedump/msmangle.c
+0
-2
ne.c
tools/winedump/ne.c
+1
-5
nls.c
tools/winedump/nls.c
+0
-2
output.c
tools/winedump/output.c
+0
-1
pdb.c
tools/winedump/pdb.c
+0
-14
pe.c
tools/winedump/pe.c
+0
-14
search.c
tools/winedump/search.c
+0
-2
symbol.c
tools/winedump/symbol.c
+0
-2
tlb.c
tools/winedump/tlb.c
+0
-2
winedump.h
tools/winedump/winedump.h
+1
-0
utils.c
tools/winegcc/utils.c
+1
-1
winegcc.c
tools/winegcc/winegcc.c
+0
-1
po.c
tools/wmc/po.c
+0
-1
utils.c
tools/wmc/utils.c
+0
-1
wmc.c
tools/wmc/wmc.c
+0
-1
write.c
tools/wmc/write.c
+0
-1
parser.y
tools/wrc/parser.y
+1
-1
po.c
tools/wrc/po.c
+0
-1
ppy.y
tools/wrc/ppy.y
+0
-1
utils.c
tools/wrc/utils.c
+0
-1
wpp.c
tools/wrc/wpp.c
+0
-4
wrc.c
tools/wrc/wrc.c
+0
-4
writeres.c
tools/wrc/writeres.c
+0
-1
No files found.
tools/make_xftmpl.c
View file @
f9ee0d2f
...
...
@@ -19,15 +19,11 @@
*/
#include "config.h"
#include "wine/port.h"
#include <signal.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include "windef.h"
#include "guiddef.h"
...
...
tools/sfnt2fon/sfnt2fon.c
View file @
f9ee0d2f
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <ctype.h>
...
...
tools/widl/client.c
View file @
f9ee0d2f
...
...
@@ -19,13 +19,9 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdio.h>
#include <stdlib.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <string.h>
#include <ctype.h>
...
...
tools/widl/header.c
View file @
f9ee0d2f
...
...
@@ -23,9 +23,6 @@
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <string.h>
#include <ctype.h>
...
...
tools/widl/proxy.c
View file @
f9ee0d2f
...
...
@@ -20,13 +20,9 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdio.h>
#include <stdlib.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <string.h>
#include <ctype.h>
...
...
tools/widl/register.c
View file @
f9ee0d2f
...
...
@@ -19,13 +19,9 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdio.h>
#include <stdlib.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <string.h>
#include <ctype.h>
...
...
tools/widl/server.c
View file @
f9ee0d2f
...
...
@@ -19,13 +19,9 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdio.h>
#include <stdlib.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <string.h>
#include <ctype.h>
...
...
tools/widl/typegen.c
View file @
f9ee0d2f
...
...
@@ -20,13 +20,9 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdio.h>
#include <stdlib.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <string.h>
#include <assert.h>
#include <ctype.h>
...
...
tools/widl/typelib.c
View file @
f9ee0d2f
...
...
@@ -20,21 +20,16 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <string.h>
#include <ctype.h>
#include "widl.h"
#include "windef.h"
#include "winbase.h"
#include "widl.h"
#include "utils.h"
#include "wpp_private.h"
#include "parser.h"
...
...
tools/widl/utils.c
View file @
f9ee0d2f
...
...
@@ -20,7 +20,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <stdio.h>
...
...
tools/widl/widl.c
View file @
f9ee0d2f
...
...
@@ -20,15 +20,11 @@
*/
#include "config.h"
#include "wine/port.h"
#include <errno.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <string.h>
#include <assert.h>
#include <ctype.h>
...
...
tools/widl/write_msft.c
View file @
f9ee0d2f
...
...
@@ -28,7 +28,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdlib.h>
#include <string.h>
...
...
@@ -39,12 +38,11 @@
#define NONAMELESSUNION
#include "widl.h"
#include "winerror.h"
#include "windef.h"
#include "winbase.h"
#include "winnls.h"
#include "widl.h"
#include "typelib.h"
#include "typelib_struct.h"
#include "utils.h"
...
...
tools/winebuild/import.c
View file @
f9ee0d2f
...
...
@@ -20,7 +20,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <ctype.h>
...
...
@@ -28,12 +27,6 @@
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include "wine/list.h"
#include "build.h"
...
...
tools/winebuild/main.c
View file @
f9ee0d2f
...
...
@@ -23,7 +23,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <stdio.h>
...
...
tools/winebuild/parser.c
View file @
f9ee0d2f
...
...
@@ -23,7 +23,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <ctype.h>
...
...
tools/winebuild/relay.c
View file @
f9ee0d2f
...
...
@@ -23,7 +23,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <ctype.h>
#include <stdarg.h>
...
...
tools/winebuild/res16.c
View file @
f9ee0d2f
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <ctype.h>
...
...
@@ -27,10 +26,6 @@
#include <string.h>
#include <stdarg.h>
#include <stdio.h>
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#include <fcntl.h>
#include "build.h"
...
...
tools/winebuild/res32.c
View file @
f9ee0d2f
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <ctype.h>
...
...
@@ -27,10 +26,6 @@
#include <string.h>
#include <stdarg.h>
#include <stdio.h>
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#include <fcntl.h>
#include "build.h"
...
...
tools/winebuild/spec16.c
View file @
f9ee0d2f
...
...
@@ -23,7 +23,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <ctype.h>
...
...
tools/winebuild/spec32.c
View file @
f9ee0d2f
...
...
@@ -23,7 +23,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <ctype.h>
...
...
tools/winebuild/utils.c
View file @
f9ee0d2f
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <ctype.h>
...
...
@@ -27,12 +26,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
#include "build.h"
...
...
tools/winedump/debug.c
View file @
f9ee0d2f
...
...
@@ -21,25 +21,11 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdlib.h>
#include <stdarg.h>
#include <stdio.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <time.h>
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
#ifdef HAVE_SYS_MMAN_H
#include <sys/mman.h>
#endif
#include <fcntl.h>
#include "../tools.h"
#include "windef.h"
...
...
tools/winedump/dos.c
View file @
f9ee0d2f
...
...
@@ -19,24 +19,11 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdlib.h>
#include <stdarg.h>
#include <stdio.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <time.h>
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
#ifdef HAVE_SYS_MMAN_H
#include <sys/mman.h>
#endif
#include <fcntl.h>
#include "windef.h"
...
...
tools/winedump/dump.c
View file @
f9ee0d2f
...
...
@@ -19,22 +19,11 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdlib.h>
#include <stdarg.h>
#include <stdio.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <time.h>
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
#include <fcntl.h>
#include "../tools.h"
#include "windef.h"
...
...
tools/winedump/emf.c
View file @
f9ee0d2f
...
...
@@ -19,19 +19,12 @@
*/
#include "config.h"
#include "wine/port.h"
#include "winedump.h"
#include <stdio.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#include <fcntl.h>
#include <stdarg.h>
#include "winedump.h"
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
...
...
tools/winedump/font.c
View file @
f9ee0d2f
...
...
@@ -19,20 +19,10 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#ifdef HAVE_SYS_MMAN_H
#include <sys/mman.h>
#endif
#include <fcntl.h>
#include "windef.h"
...
...
tools/winedump/le.c
View file @
f9ee0d2f
...
...
@@ -19,14 +19,10 @@
*/
#include "config.h"
#include "wine/port.h"
#include <fcntl.h>
#include <stdarg.h>
#include <stdio.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include "windef.h"
#include "winbase.h"
...
...
tools/winedump/lib.c
View file @
f9ee0d2f
...
...
@@ -19,20 +19,10 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#ifdef HAVE_SYS_MMAN_H
#include <sys/mman.h>
#endif
#include <fcntl.h>
#define NONAMELESSUNION
...
...
tools/winedump/lnk.c
View file @
f9ee0d2f
...
...
@@ -19,22 +19,15 @@
*/
#include "config.h"
#include "wine/port.h"
#include "winedump.h"
#include <stdio.h>
#include <stdlib.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#include <fcntl.h>
#include <stdarg.h>
#include <fcntl.h>
#include "windef.h"
#include "winbase.h"
#include "winedump.h"
#include "pshpack1.h"
...
...
tools/winedump/main.c
View file @
f9ee0d2f
...
...
@@ -19,9 +19,7 @@
*/
#include "config.h"
#include "wine/port.h"
#include "../tools.h"
#include "winedump.h"
_globals
globals
;
/* All global variables */
...
...
tools/winedump/mf.c
View file @
f9ee0d2f
...
...
@@ -19,9 +19,8 @@
*/
#include "config.h"
#include "wine/port.h"
#include "winedump.h"
#include "winedump.h"
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
...
...
tools/winedump/minidump.c
View file @
f9ee0d2f
...
...
@@ -23,11 +23,9 @@
#define NONAMELESSUNION
#define NONAMELESSSTRUCT
#include "windef.h"
#include "winbase.h"
#include "winedump.h"
#include "winver.h"
#include "dbghelp.h"
#include "winedump.h"
static
void
dump_mdmp_data
(
const
MINIDUMP_LOCATION_DESCRIPTOR
*
md
,
const
char
*
pfx
)
{
...
...
tools/winedump/misc.c
View file @
f9ee0d2f
...
...
@@ -19,9 +19,7 @@
*/
#include "config.h"
#include "wine/port.h"
#include "../tools.h"
#include "winedump.h"
...
...
tools/winedump/msc.c
View file @
f9ee0d2f
...
...
@@ -19,27 +19,13 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdlib.h>
#include <stdarg.h>
#include <stdio.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <time.h>
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
#ifdef HAVE_SYS_MMAN_H
#include <sys/mman.h>
#endif
#include <fcntl.h>
#include "../tools.h"
#include "windef.h"
#include "winbase.h"
#include "winedump.h"
...
...
tools/winedump/msmangle.c
View file @
f9ee0d2f
...
...
@@ -19,9 +19,7 @@
*/
#include "config.h"
#include "wine/port.h"
#include "../tools.h"
#include "winedump.h"
/* Type for parsing mangled types */
...
...
tools/winedump/ne.c
View file @
f9ee0d2f
...
...
@@ -19,14 +19,10 @@
*/
#include "config.h"
#include "wine/port.h"
#include <fcntl.h>
#include <stdarg.h>
#include <stdio.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <fcntl.h>
#include "windef.h"
#include "winbase.h"
...
...
tools/winedump/nls.c
View file @
f9ee0d2f
...
...
@@ -19,13 +19,11 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include "../tools.h"
#include "windef.h"
#include "winedump.h"
...
...
tools/winedump/output.c
View file @
f9ee0d2f
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include "winedump.h"
...
...
tools/winedump/pdb.c
View file @
f9ee0d2f
...
...
@@ -19,29 +19,15 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdlib.h>
#include <stdarg.h>
#include <stdio.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <time.h>
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
#ifdef HAVE_SYS_MMAN_H
#include <sys/mman.h>
#endif
#include <fcntl.h>
#define NONAMELESSUNION
#include "../tools.h"
#include "windef.h"
#include "winbase.h"
#include "winedump.h"
...
...
tools/winedump/pe.c
View file @
f9ee0d2f
...
...
@@ -19,29 +19,15 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdlib.h>
#include <stdarg.h>
#include <stdio.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <time.h>
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
#ifdef HAVE_SYS_MMAN_H
#include <sys/mman.h>
#endif
#include <fcntl.h>
#define NONAMELESSUNION
#define NONAMELESSSTRUCT
#include "../tools.h"
#include "windef.h"
#include "winbase.h"
#include "winedump.h"
...
...
tools/winedump/search.c
View file @
f9ee0d2f
...
...
@@ -19,9 +19,7 @@
*/
#include "config.h"
#include "wine/port.h"
#include "../tools.h"
#include "winedump.h"
static
char
*
grep_buff
=
NULL
;
...
...
tools/winedump/symbol.c
View file @
f9ee0d2f
...
...
@@ -19,9 +19,7 @@
*/
#include "config.h"
#include "wine/port.h"
#include "../tools.h"
#include "winedump.h"
...
...
tools/winedump/tlb.c
View file @
f9ee0d2f
...
...
@@ -20,13 +20,11 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include "../tools.h"
#include "winedump.h"
#define MSFT_MAGIC 0x5446534d
...
...
tools/winedump/winedump.h
View file @
f9ee0d2f
...
...
@@ -42,6 +42,7 @@
#include <assert.h>
#include <stdarg.h>
#include "../tools.h"
#include "windef.h"
#include "winbase.h"
...
...
tools/winegcc/utils.c
View file @
f9ee0d2f
...
...
@@ -19,8 +19,8 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include <stdio.h>
#include <string.h>
...
...
tools/winegcc/winegcc.c
View file @
f9ee0d2f
...
...
@@ -87,7 +87,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <stdio.h>
...
...
tools/wmc/po.c
View file @
f9ee0d2f
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdio.h>
#include <stdlib.h>
...
...
tools/wmc/utils.c
View file @
f9ee0d2f
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdio.h>
#include <stdlib.h>
...
...
tools/wmc/wmc.c
View file @
f9ee0d2f
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdio.h>
#include <stdlib.h>
...
...
tools/wmc/write.c
View file @
f9ee0d2f
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdio.h>
#include <stdlib.h>
...
...
tools/wrc/parser.y
View file @
f9ee0d2f
...
...
@@ -120,8 +120,8 @@
* - Corrected syntax problems with an old yacc (;)
* - Added extra comment about grammar
*/
#include "config.h"
#include "wine/port.h"
#include
<stdio
.
h
>
#include
<stdlib
.
h
>
...
...
tools/wrc/po.c
View file @
f9ee0d2f
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdio.h>
#include <stdlib.h>
...
...
tools/wrc/ppy.y
View file @
f9ee0d2f
...
...
@@ -21,7 +21,6 @@
%{
#include "config.h"
#include "wine/port.h"
#include <stdio.h>
#include <stdlib.h>
...
...
tools/wrc/utils.c
View file @
f9ee0d2f
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <stdio.h>
...
...
tools/wrc/wpp.c
View file @
f9ee0d2f
...
...
@@ -20,7 +20,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <ctype.h>
...
...
@@ -30,9 +29,6 @@
#include <string.h>
#include <stdarg.h>
#include <time.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include "../tools.h"
#include "utils.h"
...
...
tools/wrc/wrc.c
View file @
f9ee0d2f
...
...
@@ -20,13 +20,9 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdio.h>
#include <stdlib.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <string.h>
#include <assert.h>
#include <ctype.h>
...
...
tools/wrc/writeres.c
View file @
f9ee0d2f
...
...
@@ -19,7 +19,6 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdio.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