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

21 lines
251 B
C
Raw Normal View History

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