diff options
author | dd <dd@FreeBSD.org> | 2001-06-24 19:50:42 +0000 |
---|---|---|
committer | dd <dd@FreeBSD.org> | 2001-06-24 19:50:42 +0000 |
commit | dc0185a4595e3c76be40a220d9f40362393b0787 (patch) | |
tree | 98072ccdbeeb48ed101ec6127193016cfb67132a /usr.bin/ypcat/ypcat.c | |
parent | 84f4d732c89abc03206b2d4ee238aae4c766d6e1 (diff) | |
download | FreeBSD-src-dc0185a4595e3c76be40a220d9f40362393b0787.zip FreeBSD-src-dc0185a4595e3c76be40a220d9f40362393b0787.tar.gz |
Include missing header files which define functions for which gcc has
builtins (e.g., exit, strcmp).
Diffstat (limited to 'usr.bin/ypcat/ypcat.c')
-rw-r--r-- | usr.bin/ypcat/ypcat.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr.bin/ypcat/ypcat.c b/usr.bin/ypcat/ypcat.c index e90e763a..f2cb022 100644 --- a/usr.bin/ypcat/ypcat.c +++ b/usr.bin/ypcat/ypcat.c @@ -38,6 +38,8 @@ static const char rcsid[] = #include <ctype.h> #include <err.h> #include <stdio.h> +#include <stdlib.h> +#include <string.h> #include <unistd.h> #include <rpc/rpc.h> |