aboutsummaryrefslogtreecommitdiff
path: root/syscalls.c
diff options
context:
space:
mode:
Diffstat (limited to 'syscalls.c')
-rw-r--r--syscalls.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/syscalls.c b/syscalls.c
index 58f3ecc..d7b7211 100644
--- a/syscalls.c
+++ b/syscalls.c
@@ -191,6 +191,14 @@ int _getpid(int a)
return 0;
}
-/*** EOF ***/
+/***************************************************************************/
+int _open(int a, int b)
+{
+ a = a;
+ b = b;
+
+ return 0;
+}
+/*** EOF ***/