Don't duplicate system declarations (vsprintf and friends) already

present in system headers. Even worse: those declarations have slightly
different argument types (va_list vs. _BSD_VA_LIST_)
This commit is contained in:
martin 2000-12-30 21:36:23 +00:00
parent d962f9c52e
commit 8d2fdb358e
1 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: supextern.h,v 1.13 2000/10/11 20:23:57 is Exp $ */
/* $NetBSD: supextern.h,v 1.14 2000/12/30 21:36:23 martin Exp $ */
struct stat;
@ -193,7 +193,11 @@ int msgxpatch __P((void));
int msgcompress __P((void));
/* vprintf.c */
/* XXX already in system headers included already - but with different
argument declarations! */
#if 0
int vprintf __P((const char *, va_list));
int vfprintf __P((FILE *, const char *, va_list));
int vsprintf __P((char *, const char *, va_list));
int vsnprintf __P((char *, size_t, const char *, va_list));
#endif