feat: (twimap) provide an easy way for mapping kernel objects into filesystem
[lunaix-os.git] / lunaix-os / includes / lunaix / lunistd.h
index 472f638d8eac77c05417688b75f24c6fad173dae..d9644289087005b811496b2adf08048da86a37d3 100644 (file)
@@ -47,4 +47,14 @@ __LXSYSCALL1(int, dup, int, oldfd)
 
 __LXSYSCALL1(int, fsync, int, fildes)
 
+__LXSYSCALL2(int, symlink, const char*, pathname, const char*, link_target)
+
+__LXSYSCALL1(int, chdir, const char*, path)
+
+__LXSYSCALL1(int, fchdir, int, fd)
+
+__LXSYSCALL2(char*, getcwd, char*, buf, size_t, size)
+
+__LXSYSCALL2(int, rename, const char*, oldpath, const char*, newpath)
+
 #endif /* __LUNAIX_UNISTD_H */