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

fstat.c « mn10200 « libgloss - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c3b2fa0a639dd8eff3450f434c75bb627356a863 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <_ansi.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "trap.h"


int
_fstat (int file,
	struct stat *st)
{
  st->st_mode = S_IFCHR;
  st->st_blksize = 4096;
  return 0;
}