source:
trunk/sys/dietlibc/vscanf.c
@
64
Last change on this file since 64 was 1, checked in by , 8 years ago | |
---|---|
File size: 176 bytes |
Rev | Line | |
---|---|---|
[1] | 1 | #include <stdarg.h> |
2 | #include <stdlib.h> | |
3 | #include "dietstdio.h" | |
4 | #include <unistd.h> | |
5 | ||
6 | int 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.