From: Alan Cox Date: Sun, 22 Oct 2017 14:13:13 +0000 (+0100) Subject: remount: add new syscall interface X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=d59b39e88e57b43180a784668f3b9d78e40abb05;p=FUZIX.git remount: add new syscall interface --- diff --git a/Library/libs/remount.c b/Library/libs/remount.c new file mode 100644 index 00000000..0b9ba1dc --- /dev/null +++ b/Library/libs/remount.c @@ -0,0 +1,7 @@ +#include +#include + +int remount(const char *target, int flags) +{ + return _umount(target, flags | MS_REMOUNT); +}