summaryrefslogtreecommitdiffhomepage
path: root/include/CompilerKit/PEF.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-02-28 07:27:27 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-02-28 07:27:27 +0100
commit2b770125c35f061e0da813dab91f42c96b1ac749 (patch)
treef2539f45a472be6f29bee192a42976aed1298a26 /include/CompilerKit/PEF.h
parent6a84782b5c574b7742f8fca7023556a8e4bce535 (diff)
chore: wip: including TProc and Boost for Nectar compiler frontend.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/CompilerKit/PEF.h')
-rw-r--r--include/CompilerKit/PEF.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/CompilerKit/PEF.h b/include/CompilerKit/PEF.h
index 0c3fd78..f7b88b9 100644
--- a/include/CompilerKit/PEF.h
+++ b/include/CompilerKit/PEF.h
@@ -83,7 +83,7 @@ enum {
/* PEF container information */
typedef struct PEFContainer final {
- Char Magic[kPefMagicLen];
+ char Magic[kPefMagicLen];
UInt32 Linker; /* Linker used to link executable */
UInt32 Version;
UInt32 Kind;
@@ -103,7 +103,7 @@ typedef struct PEFContainer final {
/* @brief Command Header, a la Mach-O, designed with FAT binaries and virtual memory in mind. */
typedef struct PEFCommandHeader final {
- Char Name[kPefNameLen]; /* container name */
+ char Name[kPefNameLen]; /* container name */
UInt32 Cpu; /* container cpu */
UInt32 SubCpu; /* container sub-cpu */
UInt32 Flags; /* container flags */