diff options
author | obrien <obrien@FreeBSD.org> | 2009-05-04 00:37:44 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2009-05-04 00:37:44 +0000 |
commit | a8abfd3eba1e14d222768ebf8316ec02e56af39a (patch) | |
tree | 12756817ab8bc4334652c625c7731c9e7fd0cefc /contrib/file/asprintf.c | |
parent | 3222e9c2cde262a2a5a46f45f0a1e06623f69433 (diff) | |
parent | 3d89d1fbe920995209cda59ff0fd5096b6471133 (diff) | |
download | FreeBSD-src-a8abfd3eba1e14d222768ebf8316ec02e56af39a.zip FreeBSD-src-a8abfd3eba1e14d222768ebf8316ec02e56af39a.tar.gz |
Merge vendor/file/dist@191739, bringing FILE 5.00 to 8-CURRENT.
Diffstat (limited to 'contrib/file/asprintf.c')
-rw-r--r-- | contrib/file/asprintf.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/contrib/file/asprintf.c b/contrib/file/asprintf.c index c103cf1..0606593 100644 --- a/contrib/file/asprintf.c +++ b/contrib/file/asprintf.c @@ -26,7 +26,11 @@ * SUCH DAMAGE. */ -#include <stdarg.h> +#include "file.h" + +#ifndef lint +FILE_RCSID("@(#)$File: asprintf.c,v 1.3 2009/02/03 20:27:51 christos Exp $") +#endif int vasprintf(char **ptr, const char *format_string, va_list vargs); |