diff options
| author | Eric Andersen <andersen@codepoet.org> | 2000-06-19 18:25:49 +0000 |
|---|---|---|
| committer | Eric Andersen <andersen@codepoet.org> | 2000-06-19 18:25:49 +0000 |
| commit | 5e29c6ffce509bc492a2acc4dd4102ac96d0f515 (patch) | |
| tree | f507bd1431eb6ca52ece3266494e0549cb01d862 /util-linux | |
| parent | a15cd0be34c81f445be6a2c2234ab0d355b71fba (diff) | |
| download | busybox-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')
| -rw-r--r-- | util-linux/swaponoff.c | 6 |
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 | ||
| 35 | static int whichApp; | 37 | static int whichApp; |
