Change include style to use system includes
The libcper header files in `libcper` are installed to
`usr/include/libcper`. Use that system includes in `libcper` source
instead of using the project includes.
Change-Id: I596edc2c754dae4829844f535a1e34caa246fb43
Signed-off-by: Thu Nguyen <thu@os.amperecomputing.com>
diff --git a/generator/sections/gen-section-arm.c b/generator/sections/gen-section-arm.c
index c98bf84..5043741 100644
--- a/generator/sections/gen-section-arm.c
+++ b/generator/sections/gen-section-arm.c
@@ -6,9 +6,9 @@
#include <stdlib.h>
#include <string.h>
-#include "../../BaseTypes.h"
-#include "../gen-utils.h"
-#include "gen-section.h"
+#include <libcper/BaseTypes.h>
+#include <libcper/generator/gen-utils.h>
+#include <libcper/generator/sections/gen-section.h>
#define ARM_ERROR_INFO_SIZE 32
void *generate_arm_error_info();