From 9e746d42d2e3faa526f12ba222f5ee6924dd30f9 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Fri, 26 Dec 2025 10:08:33 +0100 Subject: feat! breaking API changes, use header guards and libSystem fixes. Signed-off-by: Amlal El Mahrouss --- src/libSystem/SystemKit/Syscall.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/libSystem/SystemKit/Syscall.h') diff --git a/src/libSystem/SystemKit/Syscall.h b/src/libSystem/SystemKit/Syscall.h index 58d7d7f1..1d30782f 100644 --- a/src/libSystem/SystemKit/Syscall.h +++ b/src/libSystem/SystemKit/Syscall.h @@ -4,7 +4,8 @@ ======================================== */ -#pragma once +#ifndef SYSTEMKIT_SYSCALL_H +#define SYSTEMKIT_SYSCALL_H #include #include @@ -19,3 +20,5 @@ IMPORT_C UInt64 libsys_hash_64(const Char* path); #ifndef SYSCALL_HASH #define SYSCALL_HASH(str) libsys_hash_64(str) #endif // !SYSCALL_HASH + +#endif -- cgit v1.2.3