Projet_SETI_RISC-V/riscv-gnu-toolchain/newlib/libgloss/libnosys/close.c

21 lines
249 B
C
Raw Permalink Normal View History

2023-03-06 14:48:14 +01:00
/*
* Stub version of close.
*/
#include "config.h"
#include <_ansi.h>
#include <_syslist.h>
#include <errno.h>
#undef errno
extern int errno;
#include "warning.h"
int
_close (int fildes)
{
errno = ENOSYS;
return -1;
}
stub_warning (_close)