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

stat.c « m32r « libgloss - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eb4c8e39498659b5d280646bac06e5ed9b78e8d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <sys/types.h>
#include <sys/stat.h>
#include "syscall.h"
#include "eit.h"

int
_stat (const char *path, struct stat *st)

{
  return TRAP0 (SYS_stat, path, st, 0);
}