From 6739a998f96b96f857e999cb4debbe09fc4bcf0d Mon Sep 17 00:00:00 2001 From: John Kerl Date: Thu, 16 Mar 2017 09:50:08 -0400 Subject: [PATCH] fix travis build --- c/cli/Makefile.am | 1 + c/cli/json_array_ingest.h | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 c/cli/json_array_ingest.h diff --git a/c/cli/Makefile.am b/c/cli/Makefile.am index af5ac3b1c..9c2002435 100644 --- a/c/cli/Makefile.am +++ b/c/cli/Makefile.am @@ -2,6 +2,7 @@ noinst_LTLIBRARIES= libcli.la libcli_la_SOURCES= \ argparse.c \ argparse.h \ + json_array_ingest.h \ mlrcli.c \ mlrcli.h \ quoting.h diff --git a/c/cli/json_array_ingest.h b/c/cli/json_array_ingest.h new file mode 100644 index 000000000..483795b0e --- /dev/null +++ b/c/cli/json_array_ingest.h @@ -0,0 +1,11 @@ +#ifndef JSON_ARRAY_INGEST_H +#define JSON_ARRAY_INGEST_H + +typedef enum _json_array_ingest_t { + JSON_ARRAY_INGEST_UNSPECIFIED, + JSON_ARRAY_INGEST_FATAL, + JSON_ARRAY_INGEST_SKIP, + JSON_ARRAY_INGEST_AS_MAP, +} json_array_ingest_t; + +#endif // JSON_ARRAY_INGEST_H