4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-16 11:31:00 +08:00

13 lines
196 B
C
Raw Normal View History

#include <_ansi.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "trap.h"
int
stat (const char *__restrict path, struct stat *__restrict st)
{
return TRAP0 (SYS_stat, path, st, 0);
}