/* $Id: stat.c,v 1.3 2002/10/29 04:45:44 rex Exp $ */ /* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS POSIX+ Subsystem * FILE: subsys/psx/lib/psxdll/sys/stat/stat.c * PURPOSE: Get file status * PROGRAMMER: KJK::Hyperion * UPDATE HISTORY: * 15/05/2002: Created */ #include #include #include int fstat(int fildes, struct stat *buf) { errno = ENOSYS; return (-1); } int lstat(const char *path, struct stat *buf) { errno = ENOSYS; return (-1); } int stat(const char *path, struct stat *buf) { errno = ENOSYS; return (-1); } /* EOF */