Welcome to mirror list, hosted at ThFree Co, Russian Federation.

stat.c « rdos « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6483f2aff70ee3bf14b456579f24452d2c300049 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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;
}