mirror of
https://github.com/bebbo/amiga-gcc.git
synced 2026-05-10 10:45:40 +00:00
13 lines
219 B
C
13 lines
219 B
C
#ifndef __LIBNIX_SYS_REENT_H
|
|
#define __LIBNIX_SYS_REENT_H
|
|
|
|
#if !defined(__FILE_defined)
|
|
typedef struct __sFILE __FILE;
|
|
typedef __FILE FILE;
|
|
# define __FILE_defined
|
|
#endif
|
|
|
|
struct _reent;
|
|
|
|
#endif // __LIBNIX_SYS_REENT_H
|