/* * Stub version of fstat. */ #include <_ansi.h> #include <_syslist.h> #include #include #include #undef errno extern int errno; #include "warning.h" int _DEFUN (fstat, (fildes, st), int fildes _AND struct stat *st) { st->st_mode = S_IFCHR; return 0; } stub_warning (fstat)