K&R -> ANSI prototype.
MFC after: 1 month
This commit is contained in:
parent
60270842b7
commit
c19ee5a0fb
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user