summaryrefslogtreecommitdiff
path: root/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'common.h')
-rw-r--r--common.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/common.h b/common.h
index e5c0ab4..5a6977d 100644
--- a/common.h
+++ b/common.h
@@ -1,6 +1,10 @@
#ifndef COMMON_H
#define COMMON_H
+#include <stdio.h>
+#include <stddef.h>
+
+void indicate_file_area(FILE *fd, size_t line, size_t column, size_t span);
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
#endif