summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/unistd.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-08-15 01:29:44 +0200
committerAndreas Kling <kling@serenityos.org>2021-08-15 12:44:35 +0200
commit1b739a72c23954092fbecaba5816458ce3276deb (patch)
tree6598a8a583c1c4d4badec18dd9da606c88a7d41d /Userland/Libraries/LibC/unistd.h
parent96d5d017b70e26605d2340f5a27707db4302b4df (diff)
downloadserenity-1b739a72c23954092fbecaba5816458ce3276deb.zip
Kernel+Userland: Remove chroot functionality
We are not using this for anything and it's just been sitting there gathering dust for well over a year, so let's stop carrying all this complexity around for no good reason.
Diffstat (limited to 'Userland/Libraries/LibC/unistd.h')
-rw-r--r--Userland/Libraries/LibC/unistd.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/Libraries/LibC/unistd.h b/Userland/Libraries/LibC/unistd.h
index 20a856f2e0..e681ae1b6a 100644
--- a/Userland/Libraries/LibC/unistd.h
+++ b/Userland/Libraries/LibC/unistd.h
@@ -46,8 +46,6 @@ int execvp(const char* filename, char* const argv[]);
int execl(const char* filename, const char* arg, ...);
int execle(const char* filename, const char* arg, ...);
int execlp(const char* filename, const char* arg, ...);
-int chroot(const char* path);
-int chroot_with_mount_flags(const char* path, int mount_flags);
void sync();
__attribute__((noreturn)) void _exit(int status);
pid_t getsid(pid_t);