open-story-teller/firmware/cpu/gigadevice-gd32vf103/RISCV/stubs/read.c

14 lines
213 B
C
Executable file

/* See LICENSE of license details. */
#include <stdint.h>
#include <errno.h>
#include <unistd.h>
#include <sys/types.h>
#include "stub.h"
ssize_t _read(int fd, void* ptr, size_t len)
{
return _stub(EBADF);
}