K&R -> ANSI prototype.

MFC after:	1 month
This commit is contained in:
Xin LI 2009-12-21 19:55:05 +00:00
parent 60270842b7
commit c19ee5a0fb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=200799

View File

@ -45,20 +45,15 @@ eofread(void *, char *, int);
/* ARGSUSED */
static int
eofread(cookie, buf, len)
void *cookie;
char *buf;
int len;
eofread(void *cookie, char *buf, int len)
{
return (0);
}
int
vsscanf(str, fmt, ap)
const char * __restrict str;
const char * __restrict fmt;
__va_list ap;
vsscanf(const char * __restrict str, const char * __restrict fmt,
__va_list ap)
{
FILE f;