|
From: <sv...@va...> - 2011-04-20 11:54:41
|
Author: sewardj Date: 2011-04-20 12:54:32 +0100 (Wed, 20 Apr 2011) New Revision: 11704 Log: Change a bunch of < > style includes to " " style. Modified: trunk/callgrind/bbcc.c trunk/callgrind/command.c trunk/callgrind/costs.c trunk/callgrind/dump.c trunk/callgrind/main.c trunk/callgrind/threads.c Modified: trunk/callgrind/bbcc.c =================================================================== --- trunk/callgrind/bbcc.c 2011-04-18 11:26:25 UTC (rev 11703) +++ trunk/callgrind/bbcc.c 2011-04-20 11:54:32 UTC (rev 11704) @@ -29,7 +29,7 @@ #include "global.h" #include "costs.h" -#include <pub_tool_threadstate.h> +#include "pub_tool_threadstate.h" /*------------------------------------------------------------*/ /*--- BBCC operations ---*/ Modified: trunk/callgrind/command.c =================================================================== --- trunk/callgrind/command.c 2011-04-18 11:26:25 UTC (rev 11703) +++ trunk/callgrind/command.c 2011-04-20 11:54:32 UTC (rev 11704) @@ -32,7 +32,7 @@ #include "config.h" #include "global.h" -#include <pub_tool_threadstate.h> // 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" Modified: trunk/callgrind/costs.c =================================================================== --- trunk/callgrind/costs.c 2011-04-18 11:26:25 UTC (rev 11703) +++ trunk/callgrind/costs.c 2011-04-20 11:54:32 UTC (rev 11704) @@ -28,7 +28,7 @@ #include "global.h" -#include <pub_tool_mallocfree.h> +#include "pub_tool_mallocfree.h" #define COSTCHUNK_SIZE 100000 Modified: trunk/callgrind/dump.c =================================================================== --- trunk/callgrind/dump.c 2011-04-18 11:26:25 UTC (rev 11703) +++ trunk/callgrind/dump.c 2011-04-20 11:54:32 UTC (rev 11704) @@ -29,8 +29,8 @@ #include "config.h" #include "global.h" -#include <pub_tool_threadstate.h> -#include <pub_tool_libcfile.h> +#include "pub_tool_threadstate.h" +#include "pub_tool_libcfile.h" /* Dump Part Counter */ Modified: trunk/callgrind/main.c =================================================================== --- trunk/callgrind/main.c 2011-04-18 11:26:25 UTC (rev 11703) +++ trunk/callgrind/main.c 2011-04-20 11:54:32 UTC (rev 11704) @@ -35,7 +35,7 @@ #include "callgrind.h" #include "global.h" -#include <pub_tool_threadstate.h> +#include "pub_tool_threadstate.h" #include "cg_branchpred.c" Modified: trunk/callgrind/threads.c =================================================================== --- trunk/callgrind/threads.c 2011-04-18 11:26:25 UTC (rev 11703) +++ trunk/callgrind/threads.c 2011-04-20 11:54:32 UTC (rev 11704) @@ -28,7 +28,7 @@ #include "global.h" -#include <pub_tool_threadstate.h> +#include "pub_tool_threadstate.h" /* forward decls */ static exec_state* exec_state_save(void); |