summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDanny Holman <dholman@gymli.xyz>2021-01-20 21:29:35 -0600
committerDanny Holman <dholman@gymli.xyz>2021-01-20 21:29:35 -0600
commitec075eefe8733bb788627f5e5b5bf467de7a4c05 (patch)
tree3d4751d56f9ca4a45e8f3fd74d882d8ce8d1ea61 /include
parent655452d663f6f9b32d450cc5d00c3005b7588ea1 (diff)
include: append "_H" to include guards
Add a "_H" to the end of the include guards in tty.h. Signed-off-by: Danny Holman <dholman@gymli.xyz>
Diffstat (limited to 'include')
-rw-r--r--include/kernel/tty.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/kernel/tty.h b/include/kernel/tty.h
index 194b7c7..17b86c9 100644
--- a/include/kernel/tty.h
+++ b/include/kernel/tty.h
@@ -1,5 +1,5 @@
-#ifndef KERNEL_TTY
-#define KERNEL_TTY
+#ifndef KERNEL_TTY_H
+#define KERNEL_TTY_H
#include <stddef.h>