open-story-teller/software/cpu/gigadevice-gd32vf103/RISCV/stubs/read.c
2023-04-18 16:20:41 +02:00

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);
}