diff options
author | Øyvind Harboe <oyvind.harboe@zylin.com> | 2009-12-03 13:47:25 +0100 |
---|---|---|
committer | Øyvind Harboe <oyvind.harboe@zylin.com> | 2009-12-03 13:47:25 +0100 |
commit | 434f570e51a0b0f2c09184646d91154c74bbff81 (patch) | |
tree | c28031263ab3fdd2f383062c1bf62bc7efb65a31 | |
parent | 822c06d9e3983b37cd1830c594210973cb560991 (diff) | |
download | openocd_libswd-434f570e51a0b0f2c09184646d91154c74bbff81.tar.gz openocd_libswd-434f570e51a0b0f2c09184646d91154c74bbff81.tar.bz2 openocd_libswd-434f570e51a0b0f2c09184646d91154c74bbff81.tar.xz openocd_libswd-434f570e51a0b0f2c09184646d91154c74bbff81.zip |
zy1000: include files have moved about
now compiles again after include files were moved about
to reduce -I usage and stop using quotes but rather
angle brackets for include files.
Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
-rw-r--r-- | src/ecosboard.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ecosboard.c b/src/ecosboard.c index 6e41ebaf..7d0c3d05 100644 --- a/src/ecosboard.c +++ b/src/ecosboard.c @@ -33,9 +33,9 @@ #include <server/server.h> #include <server/telnet_server.h> #include <server/gdb_server.h> -#include "openocd.h" +#include <openocd.h> -#include <time_support.h> +#include <helper/time_support.h> #include <sys/time.h> #include <stdio.h> #include <stdlib.h> |