mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-07 09:19:57 +01:00
14 lines
213 B
C
Executable file
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);
|
|
}
|