aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/data_management.h (renamed from include/list_management.h)0
-rw-r--r--include/options.h2
-rw-r--r--include/output.h2
3 files changed, 2 insertions, 2 deletions
diff --git a/include/list_management.h b/include/data_management.h
index e5d1581..e5d1581 100644
--- a/include/list_management.h
+++ b/include/data_management.h
diff --git a/include/options.h b/include/options.h
index 4fb3c82..cfc9246 100644
--- a/include/options.h
+++ b/include/options.h
@@ -11,7 +11,7 @@
#include <stdbool.h>
#include "output.h"
-#include "list_management.h"
+#include "data_management.h"
diff --git a/include/output.h b/include/output.h
index beb9559..35640fe 100644
--- a/include/output.h
+++ b/include/output.h
@@ -8,7 +8,7 @@
#define OUTPUT_H
#include <stdio.h>
-#include "list_management.h"
+#include "data_management.h"
#define LOGERR(...) {fprintf(stderr, "[%s:%d] %s: ", __FILE__, __LINE__, __func__); fprintf(stderr, __VA_ARGS__);}