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

fstat.c « m32r « libgloss - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1f91828cf50dc4ec84742d38a65eb7a791d4cf86 (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
_fstat (int file, struct stat *st)
{
  st->st_mode = S_IFCHR;
  return 0;
}