aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-08-24 22:54:28 +0900
committernsfisis <nsfisis@gmail.com>2025-08-24 22:54:28 +0900
commit39031e84952db7d1f981c2c748558aacffc0a3e4 (patch)
treec3db5c1c9e7572dc1314493b29c94e912af313a4 /src
parent6b064525a34f1989a928597e9878466b2a8222e5 (diff)
downloadducc-39031e84952db7d1f981c2c748558aacffc0a3e4.tar.gz
ducc-39031e84952db7d1f981c2c748558aacffc0a3e4.tar.zst
ducc-39031e84952db7d1f981c2c748558aacffc0a3e4.zip
feat: add include guard
Diffstat (limited to 'src')
-rw-r--r--src/std.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/std.h b/src/std.h
index f5dc3ba..a2ab45e 100644
--- a/src/std.h
+++ b/src/std.h
@@ -1,3 +1,6 @@
+#ifndef DUCC_STD_H
+#define DUCC_STD_H
+
#include <stddef.h>
struct FILE;
@@ -50,3 +53,5 @@ char* dirname(char*);
#define BOOL int
#define TRUE 1
#define FALSE 0
+
+#endif