blob: b3934efa48c43ff4f89050a842169bbc23b3c286 [file] [log] [blame]
#include "stdio_impl.h"
#include <sys/uio.h>
size_t __stdio_read(FILE *f, unsigned char *buf, size_t len)
{
/* TRUSTY - no read syscall. */
f->flags |= F_EOF;
return 0;
}