diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2001-05-29 12:17:07 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2001-05-29 12:17:07 +0000 |
commit | 5e05b0d0c294214816bc9a4ca786466d04f631c8 (patch) | |
tree | 926684253c5291dbc849db172637f15f173b2fbd /usr.bin/make/compat.c | |
parent | 9177b8f6bc51676f77ea6cdec71a6f09e1d5a2aa (diff) |
Blech! gcc is a stupid program. Compiling with -fno-builtin shows lots
of missing function declarations.
Diffstat (limited to 'usr.bin/make/compat.c')
-rw-r--r-- | usr.bin/make/compat.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/make/compat.c b/usr.bin/make/compat.c index c43c4e1a027..5c937a8ecda 100644 --- a/usr.bin/make/compat.c +++ b/usr.bin/make/compat.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: compat.c,v 1.37 2001/05/23 12:34:40 espie Exp $ */ +/* $OpenBSD: compat.c,v 1.38 2001/05/29 12:17:05 espie Exp $ */ /* $NetBSD: compat.c,v 1.14 1996/11/06 17:59:01 christos Exp $ */ /* @@ -48,6 +48,7 @@ #include <signal.h> #include <stddef.h> #include <stdio.h> +#include <string.h> #include <unistd.h> #include "config.h" #include "defines.h" |