[Cryptech-Commits] [sw/stm32] 10/11: add dummy _open for test-rsa
git at cryptech.is
git at cryptech.is
Mon Nov 16 21:43:12 UTC 2015
This is an automated email from the git hooks/post-receive script.
paul at psgd.org pushed a commit to branch master
in repository sw/stm32.
commit 61e42dd3ac55cfb4d86ad1aa928bb1114a3c5e4d
Author: Paul Selkirk <paul at psgd.org>
Date: Mon Nov 16 14:39:14 2015 -0500
add dummy _open for test-rsa
---
syscalls.c | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
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 ***/
More information about the Commits
mailing list