summaryrefslogtreecommitdiffstats
path: root/libgloss/m32r/fstat.c
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;
}