summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libc/syscalls.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--c/src/lib/libc/syscalls.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/c/src/lib/libc/syscalls.c b/c/src/lib/libc/syscalls.c
index 41eedb40d0..1b70ea8d11 100644
--- a/c/src/lib/libc/syscalls.c
+++ b/c/src/lib/libc/syscalls.c
@@ -35,27 +35,6 @@ __isatty(int _fd)
return 1;
}
-int
-__close(int _fd)
-{
- /* return value usually ignored anyhow */
- return 0;
-}
-
-int
-__open(const char *filename)
-{
- /* always fail */
- return -1;
-}
-
-int
-__lseek(int _fd, off_t offset, int whence)
-{
- /* nothing is ever seekable */
- return -1;
-}
-
int stat( const char *path, struct stat *buf )
{
/* always fail */