mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-18 04:19:21 +08:00
21cf2aee53
* libc/sys/rdos/stat.c: Remove stray +.
13 lines
239 B
C
Executable File
13 lines
239 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;
|
|
}
|