diff options
Diffstat (limited to 'lib/libc/string/swab.c')
-rw-r--r-- | lib/libc/string/swab.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/string/swab.c b/lib/libc/string/swab.c index aa6f268..8c0c43f 100644 --- a/lib/libc/string/swab.c +++ b/lib/libc/string/swab.c @@ -40,10 +40,10 @@ static char sccsid[] = "@(#)swab.c 8.1 (Berkeley) 6/4/93"; #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); -#include <string.h> +#include <unistd.h> void -swab(const void * __restrict from, void * __restrict to, size_t len) +swab(const void * __restrict from, void * __restrict to, ssize_t len) { unsigned long temp; int n; |