From 264d24495d7ff0048bd5c49736042ed66b90f7a6 Mon Sep 17 00:00:00 2001 From: Zachary T Welch <zw@superlucidity.net> Date: Thu, 3 Dec 2009 04:14:25 -0800 Subject: change #include "command.h" to <helper/command.h> Changes from the flat namespace to heirarchical one. Instead of writing: #include "command.h" the following form should be used. #include <helper/command.h> The exception is from .c files in the same directory. --- src/xsvf/xsvf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/xsvf') diff --git a/src/xsvf/xsvf.h b/src/xsvf/xsvf.h index 2153a2dd..7ce37113 100644 --- a/src/xsvf/xsvf.h +++ b/src/xsvf/xsvf.h @@ -20,7 +20,7 @@ #ifndef XSVF_H #define XSVF_H -#include "command.h" +#include <helper/command.h> int xsvf_register_commands(struct command_context *cmd_ctx); -- cgit v1.2.3