Firmwares/raven/bsp/libwrap/sys/close.c

12 lines
184 B
C
Raw Normal View History

2020-09-03 11:13:37 +02:00
/* See LICENSE of license details. */
#include <errno.h>
#include "stub.h"
#include "weak_under_alias.h"
2020-09-03 11:13:37 +02:00
int __wrap_close(int fd)
{
return _stub(EBADF);
}
weak_under_alias(close);