diff options
author | Paul Selkirk <paul@psgd.org> | 2015-11-16 14:39:14 -0500 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2015-11-16 14:39:14 -0500 |
commit | 61e42dd3ac55cfb4d86ad1aa928bb1114a3c5e4d (patch) | |
tree | a9407e4a77e3ecab7fb4512762b80bf3b454e9c5 /syscalls.c | |
parent | ce6d061fb7acd58cbe200b4361edaf5b69a251d6 (diff) |
add dummy _open for test-rsa
Diffstat (limited to 'syscalls.c')
-rw-r--r-- | syscalls.c | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -191,6 +191,14 @@ int _getpid(int a) return 0; } -/*** EOF ***/ +/***************************************************************************/ +int _open(int a, int b) +{ + a = a; + b = b; + + return 0; +} +/*** EOF ***/ |