15 lines
221 B
C
15 lines
221 B
C
#include "file.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
static struct __opaque_file __stdin = {
|
|
.f_fd = 0,
|
|
.f_flags = FILE_STATIC,
|
|
.f_buffer_mode = _IOLBF,
|
|
};
|
|
|
|
extern struct __opaque_file *__libc_file_stdin(void)
|
|
{
|
|
return &__stdin;
|
|
}
|