From 78bd2c002d85e1557fc39ab673bf938fdac774f7 Mon Sep 17 00:00:00 2001 From: crinq Date: Tue, 17 Nov 2020 21:35:02 +0100 Subject: [PATCH] syscall fix --- stmbl/f4/src/syscalls.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/stmbl/f4/src/syscalls.c b/stmbl/f4/src/syscalls.c index ab60128a..e6b8b2f8 100644 --- a/stmbl/f4/src/syscalls.c +++ b/stmbl/f4/src/syscalls.c @@ -31,6 +31,14 @@ int _open(const char *name, int flags, int mode) { return -1; } +int _kill_r(struct _reent *r, int pid, int sig){ + return -1; +} + +int _getpid_r (struct _reent *r){ + return -1; +} + /* Register name faking - works in collusion with the linker. */ register char *stack_ptr asm("sp");