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