Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'framework/errors.c')
-rw-r--r--framework/errors.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/framework/errors.c b/framework/errors.c
index 5fe08e50..bf54b2d5 100644
--- a/framework/errors.c
+++ b/framework/errors.c
@@ -16,17 +16,17 @@
* This module defines agent error codes in addition to system codes defined in errno.h
*/
-#include "config.h"
+#include <config.h>
#include <stddef.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
-#include "errors.h"
-#include "events.h"
-#include "streams.h"
-#include "myalloc.h"
-#include "json.h"
-#include "trace.h"
+#include <framework/errors.h>
+#include <framework/events.h>
+#include <framework/streams.h>
+#include <framework/myalloc.h>
+#include <framework/json.h>
+#include <framework/trace.h>
#define ERR_MESSAGE_MIN (STD_ERR_BASE + 100)
#define ERR_MESSAGE_MAX (STD_ERR_BASE + 199)

Back to the top