Tenok
A Linux-like Real-Time Operating System for Robotics and Internet of Things
reent.h
Go to the documentation of this file.
1 
4 #ifndef __REENT_H__
5 #define __REENT_H__
6 
7 #include <pthread.h>
8 
9 typedef struct {
10  int fd;
11  /* Set by the end of the file and by a failure, until clearerr() */
12  int eof;
13  int err;
14 } __FILE;
15 
16 #endif
Definition: reent.h:9