aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlake Romero <blake@blkrom.com>2025-10-07 20:28:49 +0100
committerBlake Romero <blake@blkrom.com>2025-10-07 20:28:49 +0100
commita10730eed446becc756f8ec860bd93b8c38f4c29 (patch)
tree17c5eadf4cf57fa7837f25551078caa7c0da76f9
parente7c709f408385c26acbf165d80fbee56c72d02c5 (diff)
Rename header guards
-rw-r--r--src/ll.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ll.h b/src/ll.h
index b4c8cc9..9286dfd 100644
--- a/src/ll.h
+++ b/src/ll.h
@@ -1,5 +1,5 @@
-#ifndef LL
-#define LL
+#ifndef LL_H
+#define LL_H
#define NEW_NODE llnode();
@@ -51,4 +51,4 @@ int llrmlast(Node** head);
// O(n)
int llrm(Node** head, int index);
-#endif //LL
+#endif //LL_H