From: Zachary T Welch Date: Thu, 3 Dec 2009 12:14:26 +0000 (-0800) Subject: change #include "ioutil.h" to X-Git-Tag: v0.4.0-rc1~198 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=2fc071c6e1180f8dab1e2513106d5e18213fdc8b change #include "ioutil.h" to Changes from the flat namespace to heirarchical one. Instead of writing: #include "ioutil.h" the following form should be used. #include The exception is from .c files in the same directory. --- diff --git a/src/ecosboard.c b/src/ecosboard.c index d979c18786..c93cea05bc 100644 --- a/src/ecosboard.c +++ b/src/ecosboard.c @@ -23,7 +23,7 @@ #include "types.h" #include "jtag.h" -#include "ioutil.h" +#include #include #include "xsvf.h" #include "svf.h" diff --git a/src/openocd.c b/src/openocd.c index 9c8bcac08d..24535152e7 100644 --- a/src/openocd.c +++ b/src/openocd.c @@ -30,7 +30,7 @@ #include "openocd.h" #include "jtag.h" -#include "ioutil.h" +#include #include #include "xsvf.h" #include "svf.h"