source: trunk/sys/dietlibc/vscanf.c @ 278

Last change on this file since 278 was 1, checked in by alain, 7 years ago

First import

File size: 176 bytes
Line 
1#include <stdarg.h>
2#include <stdlib.h>
3#include "dietstdio.h"
4#include <unistd.h>
5
6int vscanf(const char *format, va_list arg_ptr)
7{
8  return vfscanf(stdin,format,arg_ptr);
9}
Note: See TracBrowser for help on using the repository browser.