aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2018-10-27 05:00:17 +0200
committerTeddy Wing2018-10-27 05:00:17 +0200
commitb07c5f93636933810c54b4669e539b6f3013d149 (patch)
tree6504f9339f0f06d8d960f4a9bfed9a31d66c45c3
parent9143115594a98f4e87de129634c827404ff61594 (diff)
downloadDomeKey-b07c5f93636933810c54b4669e539b6f3013d149.tar.bz2
errors.h: Add include guards
-rw-r--r--DomeKey/errors.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/DomeKey/errors.h b/DomeKey/errors.h
index d1a97ce..35c3c7d 100644
--- a/DomeKey/errors.h
+++ b/DomeKey/errors.h
@@ -1,5 +1,10 @@
+#ifndef ERRORS_H
+#define ERRORS_H
+
#define eprintf(...) fprintf( \
stderr, \
"dome-key: error: " \
__VA_ARGS__ \
)
+
+#endif /* ERRORS_H */