summaryrefslogtreecommitdiffhomepage
path: root/dev/libSystem/src/SystemCalls.cc
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-10-08 21:50:05 +0200
committerGitHub <noreply@github.com>2025-10-08 21:50:05 +0200
commit4afdeade47b4295e49b9d65ae26fa218e2fd81dd (patch)
tree769db6f20bbaa86b0f886d409251e3a33cbc4b02 /dev/libSystem/src/SystemCalls.cc
parent3b6a7e8c87f94391f92b55f20b9ba3e560ef280e (diff)
feat: libSystem: new version of libSystem.
Diffstat (limited to 'dev/libSystem/src/SystemCalls.cc')
-rw-r--r--dev/libSystem/src/SystemCalls.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/dev/libSystem/src/SystemCalls.cc b/dev/libSystem/src/SystemCalls.cc
index 571a99a6..3db9368d 100644
--- a/dev/libSystem/src/SystemCalls.cc
+++ b/dev/libSystem/src/SystemCalls.cc
@@ -11,13 +11,6 @@
using namespace LibSystem;
-IMPORT_C Void _rtl_assert(Bool expr, const Char* origin) {
- if (!expr) {
- PrintOut(nullptr, "Assertion failed: %s\r", origin);
- libsys_syscall_arg_1(SYSCALL_HASH("_rtl_debug_break"));
- }
-}
-
/// @note this uses the FNV 64-bit variant.
IMPORT_C UInt64 libsys_hash_64(const Char* path) {
if (!path || *path == 0) return 0;