https://git.reactos.org/?p=reactos.git;a=commitdiff;h=24f35397c6512bb1426703...
commit 24f35397c6512bb142670378609c02df5527b269 Author: Amine Khaldi amine.khaldi@reactos.org AuthorDate: Tue Dec 12 12:42:13 2017 +0100
[NTOS] Add some header guards. --- ntoskrnl/include/internal/kd64.h | 2 ++ ntoskrnl/mm/ARM3/miarm.h | 2 ++ ntoskrnl/mm/ARM3/miavl.h | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/ntoskrnl/include/internal/kd64.h b/ntoskrnl/include/internal/kd64.h index 7957823724..6917845a1b 100644 --- a/ntoskrnl/include/internal/kd64.h +++ b/ntoskrnl/include/internal/kd64.h @@ -6,6 +6,8 @@ * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org) */
+#pragma once + // // Default size of the DbgPrint log buffer // diff --git a/ntoskrnl/mm/ARM3/miarm.h b/ntoskrnl/mm/ARM3/miarm.h index 320389e580..c1d81807f6 100644 --- a/ntoskrnl/mm/ARM3/miarm.h +++ b/ntoskrnl/mm/ARM3/miarm.h @@ -6,6 +6,8 @@ * PROGRAMMERS: ReactOS Portable Systems Group */
+#pragma once + #define MI_LOWEST_VAD_ADDRESS (PVOID)MM_LOWEST_USER_ADDRESS
/* Make the code cleaner with some definitions for size multiples */ diff --git a/ntoskrnl/mm/ARM3/miavl.h b/ntoskrnl/mm/ARM3/miavl.h index ae4146f49f..f93bb2f329 100644 --- a/ntoskrnl/mm/ARM3/miavl.h +++ b/ntoskrnl/mm/ARM3/miavl.h @@ -6,7 +6,7 @@ * PROGRAMMERS: ReactOS Portable Systems Group */
-/* INCLUDES ******************************************************************/ +#pragma once
/* * This is the glue code for the Memory Manager version of AVL Trees that is used