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: 542a3cc1b5faab33cf3bc060bc8b71b92bdf4aea (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;
}