aboutsummaryrefslogtreecommitdiff
path: root/src/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h
index 1d45cad..15a4342 100644
--- a/src/config.h
+++ b/src/config.h
@@ -4,6 +4,7 @@
extern int _print_type;
extern int _max_depth;
extern int _start_nl_at;
+extern int _file_malloc_chunk;
struct str_to_int {
const char* key;
@@ -11,6 +12,7 @@ struct str_to_int {
};
static struct str_to_int config_map[] = {
+ {"file_chunksize", &_file_malloc_chunk},
{"print_type", &_print_type},
{"max_depth", &_max_depth},
{"start_nl_at", &_start_nl_at},