summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-27 01:26:58 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-03-27 01:26:58 +0100
commitaba2e40affa6f151dbe496c93f4b19d4bbc62c79 (patch)
tree6e7ac5a5f3445d68df6441781ec0e779b1dec950
parentf1568a70e599b6a944383c00d80b9fe3a8a04ae9 (diff)
[FEAT] Framework header guards improvements.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
-rw-r--r--public/frameworks/CoreFoundation.fwrk/headers/Array.h4
-rw-r--r--public/frameworks/CoreFoundation.fwrk/headers/Atom.h4
-rw-r--r--public/frameworks/CoreFoundation.fwrk/headers/Dictionary.h4
-rw-r--r--public/frameworks/CoreFoundation.fwrk/headers/Foundation.h4
-rw-r--r--public/frameworks/CoreFoundation.fwrk/headers/Object.h4
-rw-r--r--public/frameworks/CoreFoundation.fwrk/headers/Property.h4
-rw-r--r--public/frameworks/CoreFoundation.fwrk/headers/Ref.h4
-rw-r--r--public/frameworks/CoreFoundation.fwrk/headers/String.h4
-rw-r--r--public/frameworks/DiskImage.fwrk/headers/DiskImage.h4
-rw-r--r--public/frameworks/KernelTest.fwrk/headers/Foundation.h4
-rw-r--r--public/frameworks/KernelTest.fwrk/headers/SourceLocation.h4
-rw-r--r--public/frameworks/KernelTest.fwrk/headers/TestCase.h4
-rw-r--r--public/frameworks/LaunchHelpers.fwrk/headers/Foundation.h4
13 files changed, 26 insertions, 26 deletions
diff --git a/public/frameworks/CoreFoundation.fwrk/headers/Array.h b/public/frameworks/CoreFoundation.fwrk/headers/Array.h
index afc5ea77..e5df695d 100644
--- a/public/frameworks/CoreFoundation.fwrk/headers/Array.h
+++ b/public/frameworks/CoreFoundation.fwrk/headers/Array.h
@@ -3,8 +3,8 @@
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
-#ifndef HEADERS_ARRAY_H
-#define HEADERS_ARRAY_H
+#ifndef FW_HEADERS_ARRAY_H
+#define FW_HEADERS_ARRAY_H
#include <libSystem/SystemKit/System.h>
diff --git a/public/frameworks/CoreFoundation.fwrk/headers/Atom.h b/public/frameworks/CoreFoundation.fwrk/headers/Atom.h
index 5abf9824..4ec12f57 100644
--- a/public/frameworks/CoreFoundation.fwrk/headers/Atom.h
+++ b/public/frameworks/CoreFoundation.fwrk/headers/Atom.h
@@ -3,8 +3,8 @@
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
-#ifndef HEADERS_ATOM_H
-#define HEADERS_ATOM_H
+#ifndef FW_HEADERS_ATOM_H
+#define FW_HEADERS_ATOM_H
#include <CoreFoundation.fwrk/headers/Foundation.h>
diff --git a/public/frameworks/CoreFoundation.fwrk/headers/Dictionary.h b/public/frameworks/CoreFoundation.fwrk/headers/Dictionary.h
index f10dc2de..41e6d289 100644
--- a/public/frameworks/CoreFoundation.fwrk/headers/Dictionary.h
+++ b/public/frameworks/CoreFoundation.fwrk/headers/Dictionary.h
@@ -3,8 +3,8 @@
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
-#ifndef HEADERS_DICTIONARY_H
-#define HEADERS_DICTIONARY_H
+#ifndef FW_HEADERS_DICTIONARY_H
+#define FW_HEADERS_DICTIONARY_H
#include <libSystem/SystemKit/System.h>
diff --git a/public/frameworks/CoreFoundation.fwrk/headers/Foundation.h b/public/frameworks/CoreFoundation.fwrk/headers/Foundation.h
index 82f3dca2..8f959543 100644
--- a/public/frameworks/CoreFoundation.fwrk/headers/Foundation.h
+++ b/public/frameworks/CoreFoundation.fwrk/headers/Foundation.h
@@ -3,8 +3,8 @@
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
-#ifndef HEADERS_FOUNDATION_H
-#define HEADERS_FOUNDATION_H
+#ifndef FW_HEADERS_FOUNDATION_H
+#define FW_HEADERS_FOUNDATION_H
#include <libSystem/SystemKit/System.h>
diff --git a/public/frameworks/CoreFoundation.fwrk/headers/Object.h b/public/frameworks/CoreFoundation.fwrk/headers/Object.h
index 54ee6268..771a2a6a 100644
--- a/public/frameworks/CoreFoundation.fwrk/headers/Object.h
+++ b/public/frameworks/CoreFoundation.fwrk/headers/Object.h
@@ -4,8 +4,8 @@
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
-#ifndef HEADERS_OBJECT_H
-#define HEADERS_OBJECT_H
+#ifndef FW_HEADERS_OBJECT_H
+#define FW_HEADERS_OBJECT_H
#include <CoreFoundation.fwrk/headers/Foundation.h>
diff --git a/public/frameworks/CoreFoundation.fwrk/headers/Property.h b/public/frameworks/CoreFoundation.fwrk/headers/Property.h
index f3176827..33773d36 100644
--- a/public/frameworks/CoreFoundation.fwrk/headers/Property.h
+++ b/public/frameworks/CoreFoundation.fwrk/headers/Property.h
@@ -3,8 +3,8 @@
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
-#ifndef HEADERS_PROPERTY_H
-#define HEADERS_PROPERTY_H
+#ifndef FW_HEADERS_PROPERTY_H
+#define FW_HEADERS_PROPERTY_H
#include <CoreFoundation.fwrk/headers/Foundation.h>
#include <CoreFoundation.fwrk/headers/Ref.h>
diff --git a/public/frameworks/CoreFoundation.fwrk/headers/Ref.h b/public/frameworks/CoreFoundation.fwrk/headers/Ref.h
index 59928e4e..31b12fc6 100644
--- a/public/frameworks/CoreFoundation.fwrk/headers/Ref.h
+++ b/public/frameworks/CoreFoundation.fwrk/headers/Ref.h
@@ -3,8 +3,8 @@
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
-#ifndef HEADERS_REF_H
-#define HEADERS_REF_H
+#ifndef FW_HEADERS_REF_H
+#define FW_HEADERS_REF_H
#include <CoreFoundation.fwrk/headers/Object.h>
#include <libSystem/SystemKit/System.h>
diff --git a/public/frameworks/CoreFoundation.fwrk/headers/String.h b/public/frameworks/CoreFoundation.fwrk/headers/String.h
index d82646ee..baf9803f 100644
--- a/public/frameworks/CoreFoundation.fwrk/headers/String.h
+++ b/public/frameworks/CoreFoundation.fwrk/headers/String.h
@@ -3,8 +3,8 @@
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
-#ifndef HEADERS_STRING_H
-#define HEADERS_STRING_H
+#ifndef FW_HEADERS_STRING_H
+#define FW_HEADERS_STRING_H
#include <CoreFoundation.fwrk/headers/Object.h>
#include <CoreFoundation.fwrk/headers/Ref.h>
diff --git a/public/frameworks/DiskImage.fwrk/headers/DiskImage.h b/public/frameworks/DiskImage.fwrk/headers/DiskImage.h
index 5ac8bd4b..346864a6 100644
--- a/public/frameworks/DiskImage.fwrk/headers/DiskImage.h
+++ b/public/frameworks/DiskImage.fwrk/headers/DiskImage.h
@@ -3,8 +3,8 @@
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
-#ifndef HEADERS_DISKIMAGE_H
-#define HEADERS_DISKIMAGE_H
+#ifndef FW_HEADERS_DISKIMAGE_H
+#define FW_HEADERS_DISKIMAGE_H
#include <libSystem/SystemKit/System.h>
diff --git a/public/frameworks/KernelTest.fwrk/headers/Foundation.h b/public/frameworks/KernelTest.fwrk/headers/Foundation.h
index 2b9e848b..82066bdd 100644
--- a/public/frameworks/KernelTest.fwrk/headers/Foundation.h
+++ b/public/frameworks/KernelTest.fwrk/headers/Foundation.h
@@ -3,8 +3,8 @@
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
-#ifndef HEADERS_FOUNDATION_H
-#define HEADERS_FOUNDATION_H
+#ifndef FW_HEADERS_FOUNDATION_H
+#define FW_HEADERS_FOUNDATION_H
#include <libSystem/SystemKit/Err.h>
#include <libSystem/SystemKit/System.h>
diff --git a/public/frameworks/KernelTest.fwrk/headers/SourceLocation.h b/public/frameworks/KernelTest.fwrk/headers/SourceLocation.h
index b8f5abd0..80361dc1 100644
--- a/public/frameworks/KernelTest.fwrk/headers/SourceLocation.h
+++ b/public/frameworks/KernelTest.fwrk/headers/SourceLocation.h
@@ -3,8 +3,8 @@
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
-#ifndef HEADERS_SOURCELOCATION_H
-#define HEADERS_SOURCELOCATION_H
+#ifndef FW_HEADERS_SOURCELOCATION_H
+#define FW_HEADERS_SOURCELOCATION_H
#include <KernelTest.fwrk/headers/Foundation.h>
diff --git a/public/frameworks/KernelTest.fwrk/headers/TestCase.h b/public/frameworks/KernelTest.fwrk/headers/TestCase.h
index 2090f84e..7f97798d 100644
--- a/public/frameworks/KernelTest.fwrk/headers/TestCase.h
+++ b/public/frameworks/KernelTest.fwrk/headers/TestCase.h
@@ -3,8 +3,8 @@
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
-#ifndef HEADERS_TESTCASE_H
-#define HEADERS_TESTCASE_H
+#ifndef FW_HEADERS_TESTCASE_H
+#define FW_HEADERS_TESTCASE_H
#include <KernelTest.fwrk/headers/SourceLocation.h>
diff --git a/public/frameworks/LaunchHelpers.fwrk/headers/Foundation.h b/public/frameworks/LaunchHelpers.fwrk/headers/Foundation.h
index fba7f492..2b45903d 100644
--- a/public/frameworks/LaunchHelpers.fwrk/headers/Foundation.h
+++ b/public/frameworks/LaunchHelpers.fwrk/headers/Foundation.h
@@ -3,8 +3,8 @@
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/ne-foss-org/nekernel
-#ifndef HEADERS_FOUNDATION_H
-#define HEADERS_FOUNDATION_H
+#ifndef FW_HEADERS_FOUNDATION_H
+#define FW_HEADERS_FOUNDATION_H
#include <CoreFoundation.fwrk/headers/Foundation.h>
#include <CoreFoundation.fwrk/headers/String.h>