diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:15:03 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:24:49 -0800 |
commit | 6db3ed48c6d152446dafc70b8495970cd2b22d3a (patch) | |
tree | f8102bdc47bec03ab67410b653c0171ee74f3e99 | |
parent | 5e7369d99aaa27a4c110507a3f0b0431fa566090 (diff) | |
download | openocd_libswd-6db3ed48c6d152446dafc70b8495970cd2b22d3a.tar.gz openocd_libswd-6db3ed48c6d152446dafc70b8495970cd2b22d3a.tar.bz2 openocd_libswd-6db3ed48c6d152446dafc70b8495970cd2b22d3a.tar.xz openocd_libswd-6db3ed48c6d152446dafc70b8495970cd2b22d3a.zip |
change #include "httpd.h" to <server/httpd.h>
Changes from the flat namespace to heirarchical one. Instead of writing:
#include "httpd.h"
the following form should be used.
#include <server/httpd.h>
The exception is from .c files in the same directory.
-rw-r--r-- | src/openocd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openocd.c b/src/openocd.c index c0614236..58ad6178 100644 --- a/src/openocd.c +++ b/src/openocd.c @@ -40,7 +40,7 @@ #include "server.h" #include <server/gdb_server.h> -#include "httpd.h" +#include <server/httpd.h> #ifdef HAVE_STRINGS_H #include <strings.h> |