mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
K&R -> ANSI prototype.
MFC after: 1 month
This commit is contained in:
parent
60270842b7
commit
c19ee5a0fb
1 changed files with 3 additions and 8 deletions
|
|
@ -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…
Reference in a new issue