diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-03-11 16:24:17 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2026-03-11 16:24:17 +0100 |
| commit | aaf43eec4e4212578d0e900b546695c42bc203c0 (patch) | |
| tree | ca76bdbe41c0f8202d1e09eb0a9e309cff902294 /src/libDDK | |
| parent | 269012b320d0b81df07a78c1082a9f7b2f106df3 (diff) | |
[CHORE] Add SPDX header for files.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/libDDK')
| -rw-r--r-- | src/libDDK/DriverKit/Defines.h | 1 | ||||
| -rw-r--r-- | src/libDDK/DriverKit/Device.h | 1 | ||||
| -rw-r--r-- | src/libDDK/DriverKit/DriverKit.h | 1 | ||||
| -rw-r--r-- | src/libDDK/DriverKit/IO.h | 1 | ||||
| -rw-r--r-- | src/libDDK/DriverKit/ObjectKit/Base.h | 1 | ||||
| -rw-r--r-- | src/libDDK/DriverKit/ObjectKit/Checksum.h | 1 | ||||
| -rw-r--r-- | src/libDDK/DriverKit/ObjectKit/DriverKit.h | 1 | ||||
| -rw-r--r-- | src/libDDK/DriverKit/String.h | 1 | ||||
| -rw-r--r-- | src/libDDK/src/Allocator.cpp | 1 | ||||
| -rw-r--r-- | src/libDDK/src/CxxABI.cpp | 1 | ||||
| -rw-r--r-- | src/libDDK/src/DriverBase.cpp | 1 |
11 files changed, 11 insertions, 0 deletions
diff --git a/src/libDDK/DriverKit/Defines.h b/src/libDDK/DriverKit/Defines.h index fd3daeee..6232a6a6 100644 --- a/src/libDDK/DriverKit/Defines.h +++ b/src/libDDK/DriverKit/Defines.h @@ -3,6 +3,7 @@ // Licensed under the Apache License, Version 2.0 (see LICENSE file) // Official repository: https://github.com/ne-foss-org/nekernel + #ifndef DRIVERKIT_MACROS_H #define DRIVERKIT_MACROS_H diff --git a/src/libDDK/DriverKit/Device.h b/src/libDDK/DriverKit/Device.h index 9bdc2cf7..7fa162b8 100644 --- a/src/libDDK/DriverKit/Device.h +++ b/src/libDDK/DriverKit/Device.h @@ -3,6 +3,7 @@ // Licensed under the Apache License, Version 2.0 (see LICENSE file) // Official repository: https://github.com/ne-foss-org/nekernel + #ifndef DRIVERKIT_DEV_H #define DRIVERKIT_DEV_H diff --git a/src/libDDK/DriverKit/DriverKit.h b/src/libDDK/DriverKit/DriverKit.h index 40e8ab75..86ad45e9 100644 --- a/src/libDDK/DriverKit/DriverKit.h +++ b/src/libDDK/DriverKit/DriverKit.h @@ -3,6 +3,7 @@ // Licensed under the Apache License, Version 2.0 (see LICENSE file) // Official repository: https://github.com/ne-foss-org/nekernel + #ifndef DRIVERKIT_DDK_H #define DRIVERKIT_DDK_H diff --git a/src/libDDK/DriverKit/IO.h b/src/libDDK/DriverKit/IO.h index 4b27ebfa..fbf9c4b6 100644 --- a/src/libDDK/DriverKit/IO.h +++ b/src/libDDK/DriverKit/IO.h @@ -3,6 +3,7 @@ // Licensed under the Apache License, Version 2.0 (see LICENSE file) // Official repository: https://github.com/ne-foss-org/nekernel + #ifndef DRIVERKIT_IO_H #define DRIVERKIT_IO_H diff --git a/src/libDDK/DriverKit/ObjectKit/Base.h b/src/libDDK/DriverKit/ObjectKit/Base.h index 5b483617..884cebb6 100644 --- a/src/libDDK/DriverKit/ObjectKit/Base.h +++ b/src/libDDK/DriverKit/ObjectKit/Base.h @@ -3,6 +3,7 @@ // Licensed under the Apache License, Version 2.0 (see LICENSE file) // Official repository: https://github.com/ne-foss-org/nekernel + #ifndef DRIVERKIT_OBJECTKIT_DRIVER_BASE_H #define DRIVERKIT_OBJECTKIT_DRIVER_BASE_H diff --git a/src/libDDK/DriverKit/ObjectKit/Checksum.h b/src/libDDK/DriverKit/ObjectKit/Checksum.h index 927bbb77..4935e8fd 100644 --- a/src/libDDK/DriverKit/ObjectKit/Checksum.h +++ b/src/libDDK/DriverKit/ObjectKit/Checksum.h @@ -3,6 +3,7 @@ // Licensed under the Apache License, Version 2.0 (see LICENSE file) // Official repository: https://github.com/ne-foss-org/nekernel + #ifndef DRIVERKIT_CHECKSUM_H #define DRIVERKIT_CHECKSUM_H diff --git a/src/libDDK/DriverKit/ObjectKit/DriverKit.h b/src/libDDK/DriverKit/ObjectKit/DriverKit.h index 3fc883fa..f080907d 100644 --- a/src/libDDK/DriverKit/ObjectKit/DriverKit.h +++ b/src/libDDK/DriverKit/ObjectKit/DriverKit.h @@ -3,6 +3,7 @@ // Licensed under the Apache License, Version 2.0 (see LICENSE file) // Official repository: https://github.com/ne-foss-org/nekernel + #ifndef DRIVERKIT_DDK_H #define DRIVERKIT_DDK_H diff --git a/src/libDDK/DriverKit/String.h b/src/libDDK/DriverKit/String.h index b252a9db..d84f09dd 100644 --- a/src/libDDK/DriverKit/String.h +++ b/src/libDDK/DriverKit/String.h @@ -3,6 +3,7 @@ // Licensed under the Apache License, Version 2.0 (see LICENSE file) // Official repository: https://github.com/ne-foss-org/nekernel + #ifndef DRIVERKIT_STR_H #define DRIVERKIT_STR_H diff --git a/src/libDDK/src/Allocator.cpp b/src/libDDK/src/Allocator.cpp index 362c2b18..982f2cb1 100644 --- a/src/libDDK/src/Allocator.cpp +++ b/src/libDDK/src/Allocator.cpp @@ -3,6 +3,7 @@ // Licensed under the Apache License, Version 2.0 (see LICENSE file) // Official repository: https://github.com/ne-foss-org/nekernel + #include <DriverKit/DriverKit.h> /** diff --git a/src/libDDK/src/CxxABI.cpp b/src/libDDK/src/CxxABI.cpp index 637fcc2f..9d32a494 100644 --- a/src/libDDK/src/CxxABI.cpp +++ b/src/libDDK/src/CxxABI.cpp @@ -3,6 +3,7 @@ // Licensed under the Apache License, Version 2.0 (see LICENSE file) // Official repository: https://github.com/ne-foss-org/nekernel + #include <DriverKit/DriverKit.h> void* operator new(size_t sz) { diff --git a/src/libDDK/src/DriverBase.cpp b/src/libDDK/src/DriverBase.cpp index 37b138a0..6c3166f4 100644 --- a/src/libDDK/src/DriverBase.cpp +++ b/src/libDDK/src/DriverBase.cpp @@ -3,6 +3,7 @@ // Licensed under the Apache License, Version 2.0 (see LICENSE file) // Official repository: https://github.com/ne-foss-org/nekernel + #include <DriverKit/ObjectKit/Base.h> |
