diff options
Diffstat (limited to 'src/minutils/s6-swapon.c')
-rw-r--r-- | src/minutils/s6-swapon.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/minutils/s6-swapon.c b/src/minutils/s6-swapon.c index 6edd743..9a1b208 100644 --- a/src/minutils/s6-swapon.c +++ b/src/minutils/s6-swapon.c @@ -1,12 +1,12 @@ /* ISC license. */ +#include <unistd.h> +#include <sys/swap.h> +#include <string.h> #include <stdio.h> #include <mntent.h> -#include <skalibs/bytestr.h> #include <skalibs/strerr2.h> -extern int swapon (const char *, unsigned int) ; - #define USAGE "s6-swapon device <or> s6-swapon -a" static int swaponall () @@ -16,7 +16,7 @@ static int swaponall () FILE *yuck = setmntent("/etc/fstab", "r") ; if (!yuck) strerr_diefu1sys(111, "setmntent /etc/fstab") ; while ((d = getmntent(yuck))) - if (!str_diff(d->mnt_type, "swap") && (swapon(d->mnt_fsname, 0) == -1)) + if (!strcmp(d->mnt_type, "swap") && (swapon(d->mnt_fsname, 0) == -1)) { e++ ; strerr_warnwu2sys("swapon ", d->mnt_fsname) ; |