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/cli-app/cper-convert.c b/cli-app/cper-convert.c
index 5ff748b..c2a73e4 100644
--- a/cli-app/cper-convert.c
+++ b/cli-app/cper-convert.c
@@ -10,8 +10,8 @@
#include <libgen.h>
#include <limits.h>
#include <json.h>
-#include "../cper-parse.h"
-#include "../json-schema.h"
+#include <libcper/cper-parse.h>
+#include <libcper/json-schema.h>
void cper_to_json(char *in_file, char *out_file, int is_single_section);
void json_to_cper(char *in_file, char *out_file, char *specification_file,