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/vasprintf.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/vasprintf.c')
-rw-r--r-- | contrib/file/vasprintf.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/contrib/file/vasprintf.c b/contrib/file/vasprintf.c index 0289c0d..3e3af20 100644 --- a/contrib/file/vasprintf.c +++ b/contrib/file/vasprintf.c @@ -105,12 +105,13 @@ A buffer overflow can only occur if your sprintf() do strange things or when you use strange formats. */ -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif +#include "file.h" + +#ifndef lint +FILE_RCSID("@(#)$File: vasprintf.c,v 1.7 2009/02/03 20:27:52 christos Exp $") +#endif /* lint */ #include <assert.h> -#include <stdio.h> #include <string.h> #include <stdlib.h> #include <stdarg.h> |