diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2025-01-04 14:14:54 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2025-01-04 14:14:54 +0400 |
commit | 7896c246463093ec9bece50e457de2314b3a770d (patch) | |
tree | b8e2ff341ea0049e2ff94df401c009bd854a1c16 | |
parent | fa21a3f5e4bd3e714dd3a685fcfa4f70f281c136 (diff) |
return values of syscalls dropped in library functions
-rw-r--r-- | lib/stdlib.gorth | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/stdlib.gorth b/lib/stdlib.gorth index c10b7ac..a737693 100644 --- a/lib/stdlib.gorth +++ b/lib/stdlib.gorth @@ -1,7 +1,7 @@ word write - 1 1 syscall.4 + 1 1 syscall.4 drop end word exit - 60 syscall.2 + 60 syscall.2 drop end |