diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2017-03-11 12:16:25 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2017-03-11 12:16:25 +0000 |
commit | 1b5312d5c01fd5e12b938cfe65cda562e822619d (patch) | |
tree | 60f086613e97aae5cb2635b8b9e3251c7b3c55cf /src/skaembutils/s6-seq.c | |
parent | ac77200b30d6c8bbe9093655dd0f8d8bf6e88feb (diff) | |
download | s6-portable-utils-1b5312d5c01fd5e12b938cfe65cda562e822619d.tar.xz |
Adapt to skalibs-2.5.0.0
Diffstat (limited to 'src/skaembutils/s6-seq.c')
-rw-r--r-- | src/skaembutils/s6-seq.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/skaembutils/s6-seq.c b/src/skaembutils/s6-seq.c index db319e6..66be435 100644 --- a/src/skaembutils/s6-seq.c +++ b/src/skaembutils/s6-seq.c @@ -1,7 +1,7 @@ /* ISC license. */ -#include <sys/types.h> -#include <skalibs/uint.h> +#include <string.h> +#include <skalibs/types.h> #include <skalibs/sgetopt.h> #include <skalibs/buffer.h> #include <skalibs/strerr2.h> @@ -20,12 +20,12 @@ int main (int argc, char const *const *argv) subgetopt_t l = SUBGETOPT_ZERO ; for (;;) { - register int opt = subgetopt_r(argc, argv, "ws:", &l) ; + int opt = subgetopt_r(argc, argv, "ws:", &l) ; if (opt == -1) break ; switch (opt) { case 'w': fixed = 1 ; break ; - case 's': sep = l.arg ; seplen = str_len(sep) ; break ; + case 's': sep = l.arg ; seplen = strlen(sep) ; break ; default : dieusage() ; } } |