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

24 lines
322 B
C
Raw Permalink Normal View History

2023-03-06 14:48:14 +01:00
/*
* Stub version of stat.
*/
#include "config.h"
#include <_ansi.h>
#include <_syslist.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#undef errno
extern int errno;
#include "warning.h"
int
_stat (const char *file,
struct stat *st)
{
errno = ENOSYS;
return -1;
}
stub_warning(_stat)