From: Julian Seward Date: Wed, 20 Apr 2011 11:54:32 +0000 (+0000) Subject: Change a bunch of < > style includes to " " style. X-Git-Tag: svn/VALGRIND_3_7_0~533 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c2eb5a882cb04402bb4a3340607d58eec572cae;p=thirdparty%2Fvalgrind.git Change a bunch of < > style includes to " " style. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11704 --- diff --git a/callgrind/bbcc.c b/callgrind/bbcc.c index de57ad2d65..ccc850d1cb 100644 --- a/callgrind/bbcc.c +++ b/callgrind/bbcc.c @@ -29,7 +29,7 @@ #include "global.h" #include "costs.h" -#include +#include "pub_tool_threadstate.h" /*------------------------------------------------------------*/ /*--- BBCC operations ---*/ diff --git a/callgrind/command.c b/callgrind/command.c index 1c68cd349c..674fd0fa69 100644 --- a/callgrind/command.c +++ b/callgrind/command.c @@ -32,7 +32,7 @@ #include "config.h" #include "global.h" -#include // VG_N_THREADS +#include "pub_tool_threadstate.h" // VG_N_THREADS // Version for the syntax in command/result files for interactive control #define COMMAND_VERSION "1.0" diff --git a/callgrind/costs.c b/callgrind/costs.c index 2381044c00..e989d11273 100644 --- a/callgrind/costs.c +++ b/callgrind/costs.c @@ -28,7 +28,7 @@ #include "global.h" -#include +#include "pub_tool_mallocfree.h" #define COSTCHUNK_SIZE 100000 diff --git a/callgrind/dump.c b/callgrind/dump.c index 9bfaaab804..edac997cab 100644 --- a/callgrind/dump.c +++ b/callgrind/dump.c @@ -29,8 +29,8 @@ #include "config.h" #include "global.h" -#include -#include +#include "pub_tool_threadstate.h" +#include "pub_tool_libcfile.h" /* Dump Part Counter */ diff --git a/callgrind/main.c b/callgrind/main.c index 4223ddf724..a07c453c2f 100644 --- a/callgrind/main.c +++ b/callgrind/main.c @@ -35,7 +35,7 @@ #include "callgrind.h" #include "global.h" -#include +#include "pub_tool_threadstate.h" #include "cg_branchpred.c" diff --git a/callgrind/threads.c b/callgrind/threads.c index fb8260bf91..562cc6d1d7 100644 --- a/callgrind/threads.c +++ b/callgrind/threads.c @@ -28,7 +28,7 @@ #include "global.h" -#include +#include "pub_tool_threadstate.h" /* forward decls */ static exec_state* exec_state_save(void);