1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00

Fix build on -current (_BSD_VA_LIST_ -> va_list)

This commit is contained in:
Kris Kennaway 2002-10-21 00:22:31 +00:00
parent 177e36f61f
commit ed443fc0bf
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=68451

View File

@ -0,0 +1,11 @@
--- vsprintf.c.orig Sun Oct 20 17:23:01 2002
+++ vsprintf.c Sun Oct 20 17:23:32 2002
@@ -52,7 +52,7 @@
vsprintf(str, fmt, ap)
char *str;
const char *fmt;
- _BSD_VA_LIST_ ap;
+ va_list ap;
{
int ret;
FILE f;