mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-22 23:17:28 +08:00
13 lines
217 B
C
13 lines
217 B
C
|
#include "config.h"
|
||
|
#include <_ansi.h>
|
||
|
#include <_syslist.h>
|
||
|
#include <sys/types.h>
|
||
|
#include <sys/stat.h>
|
||
|
#include <errno.h>
|
||
|
|
||
|
int stat(const char *file, struct stat *st)
|
||
|
{
|
||
|
errno = ENOSYS;
|
||
|
return -1;
|
||
|
}
|