Cygwin: cygwin_GetCommandLineW/A: don't rely on __argv[0] content
[newlib-cygwin.git] / libgloss / iq2000 / fstat.c
blobc3b2fa0a639dd8eff3450f434c75bb627356a863
1 #include <_ansi.h>
2 #include <sys/types.h>
3 #include <sys/stat.h>
4 #include "trap.h"
7 int
8 _fstat (int file,
9 struct stat *st)
11 st->st_mode = S_IFCHR;
12 st->st_blksize = 4096;
13 return 0;