summaryrefslogtreecommitdiff
path: root/userspace/sys.c
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2014-11-21 15:37:45 +0100
committerMichal Idziorek <m.i@gmx.at>2014-11-21 15:37:45 +0100
commit65a859ac5b721c8d3e0123351ad99690e2e7a876 (patch)
treef47d53ecc9ff47451832f72fc306d20ea1bb1332 /userspace/sys.c
parent6e8ea08166b53507f38ed7f435728b7470a061ab (diff)
preparing switch to ELF userspace
Diffstat (limited to 'userspace/sys.c')
-rw-r--r--userspace/sys.c55
1 files changed, 0 insertions, 55 deletions
diff --git a/userspace/sys.c b/userspace/sys.c
deleted file mode 100644
index 7dcfaee..0000000
--- a/userspace/sys.c
+++ /dev/null
@@ -1,55 +0,0 @@
-#include <unistd.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-
-
-// building binutils required this stubs!
-long sysconf(int name)
-{
- return 0;
-}
-
-
-mode_t umask(mode_t mask)
-{
- return mask;
-}
-
-int chmod(const char * path, mode_t mode)
-{
- return 0;
-}
-
-int fcntl(int fd, int cmd, ...)
-{
- return -1;
-}
-
-int lstat(const char *path, struct stat *buf)
-{
- return -1;
-}
-
-char *getwd(char *buf)
-{
- return buf;
-}
-int access(const char *pathname, int mode)
-{
- return 0;
-}
-
-int utime(const char *filename, const int *x)
-{
- return 0;
-}
-
-int rmdir (const char *pathname)
-{
- return -1;
-}
-
-int chown(const char *path, uid_t owner, gid_t group)
-{
- return 0;
-}