diff options
author | Tim J. Robbins <tjr@FreeBSD.org> | 2003-01-03 23:31:50 +0000 |
---|---|---|
committer | Tim J. Robbins <tjr@FreeBSD.org> | 2003-01-03 23:31:50 +0000 |
commit | 3ecbeb2d3a662b51fab68e66652309dd59e6d38c (patch) | |
tree | 1d19d2add090eae8f62c2d256e4348a1d4bf697f | |
parent | 43a240930c235b3c06759152748138d8a027ecf9 (diff) |
Notes
-rw-r--r-- | lib/libc/stdlib/getsubopt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/stdlib/getsubopt.c b/lib/libc/stdlib/getsubopt.c index c27bcf6e6ce06..8577446d1cdad 100644 --- a/lib/libc/stdlib/getsubopt.c +++ b/lib/libc/stdlib/getsubopt.c @@ -37,8 +37,9 @@ static char sccsid[] = "@(#)getsubopt.c 8.1 (Berkeley) 6/4/93"; #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); -#include <unistd.h> #include <stdlib.h> +#include <string.h> +#include <unistd.h> /* * The SVID interface to getsubopt provides no way of figuring out which |