read.c 213 B

12345678910111213
  1. /* See LICENSE of license details. */
  2. #include <stdint.h>
  3. #include <errno.h>
  4. #include <unistd.h>
  5. #include <sys/types.h>
  6. #include "stub.h"
  7. ssize_t _read(int fd, void* ptr, size_t len)
  8. {
  9. return _stub(EBADF);
  10. }