summaryrefslogtreecommitdiff
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-w32-5e29c6ffce509bc492a2acc4dd4102ac96d0f515.tar.gz
busybox-w32-5e29c6ffce509bc492a2acc4dd4102ac96d0f515.tar.bz2
busybox-w32-5e29c6ffce509bc492a2acc4dd4102ac96d0f515.zip
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 @@
25#include "internal.h" 25#include "internal.h"
26#include <stdio.h> 26#include <stdio.h>
27#include <sys/mount.h> 27#include <sys/mount.h>
28#include <sys/swap.h>
29#include <mntent.h> 28#include <mntent.h>
30#include <dirent.h> 29#include <dirent.h>
31#include <fstab.h>
32#include <errno.h> 30#include <errno.h>
31#include <linux/unistd.h>
32
33_syscall2(int, swapon, const char *, path, int, flags);
34_syscall1(int, swapoff, const char *, path);
33 35
34 36
35static int whichApp; 37static int whichApp;