blob: b5700c8e5cbd8b9b22cabf089814ac9132612f96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <stdarg.h>
#include <stdio.h>
#include "_stdio.h"
int __scanf(struct io_options *opt, const char * format, va_list arg)
{
(void)opt;
(void)format;
(void)arg;
return 0;
}
|