MNRS-BM-BSP/hifive1-vp/riscv-bldc-forced-commutation/bsp/libwrap/sys/lseek.c

17 lines
282 B
C
Raw Normal View History

2018-09-25 18:31:29 +02:00
/* See LICENSE of license details. */
#include <errno.h>
#include <unistd.h>
#include <sys/types.h>
#include "stub.h"
2018-09-26 08:07:48 +02:00
#include "weak_under_alias.h"
2018-09-25 18:31:29 +02:00
off_t __wrap_lseek(int fd, off_t ptr, int dir)
{
if (isatty(fd))
return 0;
return _stub(EBADF);
}
2018-09-26 08:07:48 +02:00
weak_under_alias(lseek);