summaryrefslogtreecommitdiff
path: root/include/types.h
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-03-27 11:39:12 -0400
committerFreya Murphy <freya@freyacat.org>2025-03-27 11:39:12 -0400
commit0ff301cda68669c59351e5854ce98f2cf460543f (patch)
treecfe8f976261962420ada64b821559b9da0a56841 /include/types.h
parentadd compile_flags.txt for clangd lsp (diff)
downloadcomus-0ff301cda68669c59351e5854ce98f2cf460543f.tar.gz
comus-0ff301cda68669c59351e5854ce98f2cf460543f.tar.bz2
comus-0ff301cda68669c59351e5854ce98f2cf460543f.zip
pull upstream changes, add auto formatting
Diffstat (limited to 'include/types.h')
-rw-r--r--include/types.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/types.h b/include/types.h
index 2f934f1..fc639cb 100644
--- a/include/types.h
+++ b/include/types.h
@@ -43,16 +43,16 @@ typedef unsigned long int ulong_t;
// Boolean values
typedef uint8_t bool_t;
-#define true 1
-#define false 0
+#define true 1
+#define false 0
#ifdef KERNEL_SRC
// we define these here instead of in vm.h in order to get around a
// nasty chick/egg dependency between procs.h and vm.h
-typedef uint32_t pde_t; // page directory entry
-typedef uint32_t pte_t; // page table entry
-#endif /* KERNEL_SRC */
+typedef uint32_t pde_t; // page directory entry
+typedef uint32_t pte_t; // page table entry
+#endif /* KERNEL_SRC */
-#endif /* !ASM_SRC */
+#endif /* !ASM_SRC */
#endif