summaryrefslogtreecommitdiff
path: root/src/stdio/__scanf.c
blob: ed837b440232621903832123b9933a95db8c8744 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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;
}

/*
STDC(0)
SIGNAL_SAFE(0)
*/