[HAL] Add some header guards.
authorAmine Khaldi <amine.khaldi@reactos.org>
Sat, 9 Dec 2017 12:20:22 +0000 (13:20 +0100)
committerAmine Khaldi <amine.khaldi@reactos.org>
Sat, 9 Dec 2017 12:20:22 +0000 (13:20 +0100)
hal/halx86/apic/apic.h
hal/halx86/apic/tsc.h

index 3c5f423..5de2283 100644 (file)
@@ -1,4 +1,6 @@
 
+#pragma once
+
 #ifdef _M_AMD64
 #define IOAPIC_BASE 0xFFFFFFFFFFFE1000ULL // checkme
 #define ZERO_VECTOR          0x00 // IRQL 00
index 3d06ae1..00595a7 100644 (file)
@@ -1,4 +1,6 @@
 
+#ifndef _TSC_H_
+#define _TSC_H_
 
 #define NUM_SAMPLES 4
 #define MSR_RDTSC 0x10
@@ -16,3 +18,5 @@ VOID NTAPI HalpInitializeTsc(void);
 #endif
 
 #endif
+
+#endif /* !_TSC_H_ */