diff options
Diffstat (limited to 'src/kernel/KernelKit/PCI/Database.h')
| -rw-r--r-- | src/kernel/KernelKit/PCI/Database.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/kernel/KernelKit/PCI/Database.h b/src/kernel/KernelKit/PCI/Database.h index 35740fdc..adde60b6 100644 --- a/src/kernel/KernelKit/PCI/Database.h +++ b/src/kernel/KernelKit/PCI/Database.h @@ -3,7 +3,8 @@ Copyright (C) 2024-2025, Amlal El Mahrouss, licensed under the Apache 2.0 license. ======================================== */ -#pragma once +#ifndef KERNELKIT_DATABASE_H +#define KERNELKIT_DATABASE_H #include <KernelKit/PCI/Device.h> #include <NeKit/Config.h> @@ -48,4 +49,6 @@ inline BOOL operator!=(Kernel::UChar lhs, const Kernel::Types::PciDeviceKind& rh inline BOOL operator==(Kernel::UChar lhs, const Kernel::Types::PciDeviceKind& rhs) { return lhs == (Kernel::UChar) rhs; -}
\ No newline at end of file +} + +#endif |
