diff options
author | Marvin Borner | 2021-04-13 22:09:23 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-13 22:09:23 +0200 |
commit | 9ded3a2bde80eede5fd887812d70c2f834b53c84 (patch) | |
tree | 932a90608c5f30d38b810dc4fe9264cc43c2da68 /libs/libc/sys.c | |
parent | f96b8ad1ee83dec08ae636e179cc48019ca50b12 (diff) |
Started IO dev manager
Diffstat (limited to 'libs/libc/sys.c')
-rw-r--r-- | libs/libc/sys.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libs/libc/sys.c b/libs/libc/sys.c index 70dcc97..7563fb4 100644 --- a/libs/libc/sys.c +++ b/libs/libc/sys.c @@ -128,11 +128,6 @@ res stat(const char *path, struct stat *buf) return sys2(SYS_STAT, (int)path, (int)buf); } -res poll(const char **files) -{ - return sys1(SYS_POLL, (int)files); -} - res exec(const char *path, ...) { va_list ap; |