diff options
author | 2008-01-31 20:11:28 +0000 | |
---|---|---|
committer | 2008-01-31 20:11:28 +0000 | |
commit | 101e9cbecf695245c97b0e50132c67403e319fd9 (patch) | |
tree | 90fb1f3a22c8360d7e666a89fc599565667ace24 /usr.bin/cvs/diff_internals.c | |
parent | explain how to handle local file names containing colons; (diff) | |
download | wireguard-openbsd-101e9cbecf695245c97b0e50132c67403e319fd9.tar.xz wireguard-openbsd-101e9cbecf695245c97b0e50132c67403e319fd9.zip |
vasprintf requires stdio.h
Diffstat (limited to 'usr.bin/cvs/diff_internals.c')
-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> |