source: azure_iot_hub/trunk/musl-1.1.18/src/stdio/stdin.c@ 388

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

Azure IoT Hub Device C SDK を使ったサンプルの追加

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-csrc
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.