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
ceae3f02
Commit
ceae3f02
authored
Apr 06, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 06, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Remove unneeded includes.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d483eb21
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
0 additions
and
31 deletions
+0
-31
coff.c
dlls/dbghelp/coff.c
+0
-7
dbghelp.c
dlls/dbghelp/dbghelp.c
+0
-1
image.c
dlls/dbghelp/image.c
+0
-1
minidump.c
dlls/dbghelp/minidump.c
+0
-1
module.c
dlls/dbghelp/module.c
+0
-1
msc.c
dlls/dbghelp/msc.c
+0
-7
path.c
dlls/dbghelp/path.c
+0
-1
pe_module.c
dlls/dbghelp/pe_module.c
+0
-3
source.c
dlls/dbghelp/source.c
+0
-1
stabs.c
dlls/dbghelp/stabs.c
+0
-3
stack.c
dlls/dbghelp/stack.c
+0
-1
storage.c
dlls/dbghelp/storage.c
+0
-1
symbol.c
dlls/dbghelp/symbol.c
+0
-2
type.c
dlls/dbghelp/type.c
+0
-1
No files found.
dlls/dbghelp/coff.c
View file @
ceae3f02
...
...
@@ -32,16 +32,9 @@
* Add symbol size to internal symbol table.
*/
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <stdlib.h>
#include <string.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <stdarg.h>
#include "windef.h"
...
...
dlls/dbghelp/dbghelp.c
View file @
ceae3f02
...
...
@@ -18,7 +18,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <unistd.h>
#include "dbghelp_private.h"
...
...
dlls/dbghelp/image.c
View file @
ceae3f02
...
...
@@ -18,7 +18,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
...
...
dlls/dbghelp/minidump.c
View file @
ceae3f02
...
...
@@ -18,7 +18,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <time.h>
#define NONAMELESSUNION
...
...
dlls/dbghelp/module.c
View file @
ceae3f02
...
...
@@ -19,7 +19,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
...
...
dlls/dbghelp/msc.c
View file @
ceae3f02
...
...
@@ -34,17 +34,10 @@
#define NONAMELESSUNION
#include "config.h"
#include "wine/port.h"
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <stdarg.h>
#include "windef.h"
...
...
dlls/dbghelp/path.c
View file @
ceae3f02
...
...
@@ -18,7 +18,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
...
...
dlls/dbghelp/pe_module.c
View file @
ceae3f02
...
...
@@ -21,9 +21,6 @@
*
*/
#include "config.h"
#include "wine/port.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
...
...
dlls/dbghelp/source.c
View file @
ceae3f02
...
...
@@ -18,7 +18,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*
*/
#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
...
...
dlls/dbghelp/stabs.c
View file @
ceae3f02
...
...
@@ -29,9 +29,6 @@
* available (hopefully) from http://sources.redhat.com/gdb/onlinedocs
*/
#include "config.h"
#include "wine/port.h"
#include <sys/types.h>
#include <fcntl.h>
#include <limits.h>
...
...
dlls/dbghelp/stack.c
View file @
ceae3f02
...
...
@@ -21,7 +21,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
...
...
dlls/dbghelp/storage.c
View file @
ceae3f02
...
...
@@ -20,7 +20,6 @@
*/
#include "config.h"
#include <assert.h>
#include <stdlib.h>
#include "wine/debug.h"
...
...
dlls/dbghelp/symbol.c
View file @
ceae3f02
...
...
@@ -21,8 +21,6 @@
#define NONAMELESSUNION
#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
...
...
dlls/dbghelp/type.c
View file @
ceae3f02
...
...
@@ -24,7 +24,6 @@
#define NONAMELESSUNION
#include "config.h"
#include <stdlib.h>
#include <stdarg.h>
#include <assert.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