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/cper-utils.c b/cper-utils.c
index 94fe08e..7008020 100644
--- a/cper-utils.c
+++ b/cper-utils.c
@@ -6,8 +6,8 @@
#include <stdio.h>
#include <json.h>
-#include "Cper.h"
-#include "cper-utils.h"
+#include <libcper/Cper.h>
+#include <libcper/cper-utils.h>
//The available severity types for CPER.
const char *CPER_SEVERITY_TYPES[4] = { "Recoverable", "Fatal", "Corrected",