diff options
author | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2008-01-31 20:11:29 +0000 |
---|---|---|
committer | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2008-01-31 20:11:29 +0000 |
commit | 272552091816096cdc9c3bf627f1b5fa4adf6159 (patch) | |
tree | 815db34b5fc3213df692521947e23379cf36b16a | |
parent | 4af9aa25380a897b1b8cd7e1577644229b57aea0 (diff) |
vasprintf requires stdio.h
-rw-r--r-- | usr.bin/cvs/diff_internals.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cvs/diff_internals.c b/usr.bin/cvs/diff_internals.c index 21a3d76a4ea..bc430ae00d3 100644 --- a/usr.bin/cvs/diff_internals.c +++ b/usr.bin/cvs/diff_internals.c @@ -1,4 +1,4 @@ -/* $OpenBSD: diff_internals.c,v 1.15 2007/09/22 15:38:30 joris Exp $ */ +/* $OpenBSD: diff_internals.c,v 1.16 2008/01/31 20:11:28 tobias Exp $ */ /* * Copyright (C) Caldera International Inc. 2001-2002. * All rights reserved. @@ -71,6 +71,7 @@ #include <errno.h> #include <regex.h> #include <stddef.h> +#include <stdio.h> #include <string.h> #include <unistd.h> |