Retro68/gcc/newlib/libc/sys/rdos/stat.c
Wolfgang Thaller ec13cc9ce7 fix newlib
2018-12-29 09:59:36 +01:00

13 lines
227 B
C
Executable File

#include "config.h"
#include <_ansi.h>
#include <_syslist.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
int stat(const char *__restrict file, struct stat *__restrict st)
{
errno = ENOSYS;
return -1;
}