summaryrefslogtreecommitdiff
path: root/src/stdio/__scanf.c
blob: 7451ad4a6475670debeb062b760dc71ca8b586c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#if 0

#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;
}


#endif