source: asp3_tinet_ecnl_arm/trunk/musl-1.1.18/src/stdio/stdin.c@ 352

Last change on this file since 352 was 352, checked in by coas-nagasima, 6 years ago

arm向けASP3版ECNLを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 315 bytes
Line 
1#include "stdio_impl.h"
2
3static unsigned char buf[BUFSIZ+UNGET];
4static FILE f = {
5 .buf = buf+UNGET,
6 .buf_size = sizeof buf-UNGET,
7 .fd = 0,
8 .flags = F_PERM | F_NOWR,
9 .read = __stdio_read,
10 .seek = __stdio_seek,
11 .close = __stdio_close,
12 .lock = -1,
13};
14FILE *const stdin = &f;
15FILE *volatile __stdin_used = &f;
Note: See TracBrowser for help on using the repository browser.