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/error.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/error.c')
-rw-r--r-- | usr.bin/make/error.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/make/error.c b/usr.bin/make/error.c index b4fd3805249..ddcc8c072a0 100644 --- a/usr.bin/make/error.c +++ b/usr.bin/make/error.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: error.c,v 1.6 2001/05/23 12:34:42 espie Exp $ */ +/* $OpenBSD: error.c,v 1.7 2001/05/29 12:17:05 espie Exp $ */ /* * Copyright (c) 2001 Marc Espie. @@ -32,6 +32,7 @@ #endif #include <stdio.h> +#include <stdlib.h> #include "config.h" #include "defines.h" |