From 9bc8a11afeed3569736b89754012e3ca22ee10f6 Mon Sep 17 00:00:00 2001 From: pommicket Date: Sun, 20 Feb 2022 13:18:21 -0800 Subject: conclusion --- 05/musl-0.6.0/src/linux/swapon.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 05/musl-0.6.0/src/linux/swapon.c (limited to '05/musl-0.6.0/src/linux/swapon.c') diff --git a/05/musl-0.6.0/src/linux/swapon.c b/05/musl-0.6.0/src/linux/swapon.c new file mode 100644 index 0000000..5c75247 --- /dev/null +++ b/05/musl-0.6.0/src/linux/swapon.c @@ -0,0 +1,7 @@ +#include +#include "syscall.h" + +int swapon(const char *path, int flags) +{ + return syscall2(__NR_swapon, (long)path, flags); +} -- cgit v1.2.3