aboutsummaryrefslogtreecommitdiff
path: root/util-linux/swaponoff.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-06-19 18:25:49 +0000
committerEric Andersen <andersen@codepoet.org>2000-06-19 18:25:49 +0000
commit5e29c6ffce509bc492a2acc4dd4102ac96d0f515 (patch)
treef507bd1431eb6ca52ece3266494e0549cb01d862 /util-linux/swaponoff.c
parenta15cd0be34c81f445be6a2c2234ab0d355b71fba (diff)
downloadbusybox-5e29c6ffce509bc492a2acc4dd4102ac96d0f515.tar.gz
Make swaponoff compile cleanly under both libc5 and libc6.
-Erik
Diffstat (limited to 'util-linux/swaponoff.c')
-rw-r--r--util-linux/swaponoff.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/util-linux/swaponoff.c b/util-linux/swaponoff.c
index 83aadd08a..223436c29 100644
--- a/util-linux/swaponoff.c
+++ b/util-linux/swaponoff.c
@@ -25,11 +25,13 @@
#include "internal.h"
#include <stdio.h>
#include <sys/mount.h>
-#include <sys/swap.h>
#include <mntent.h>
#include <dirent.h>
-#include <fstab.h>
#include <errno.h>
+#include <linux/unistd.h>
+
+_syscall2(int, swapon, const char *, path, int, flags);
+_syscall1(int, swapoff, const char *, path);
static int whichApp;