mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
2ca9fcd3b0
svn path=/trunk/; revision=65460
36 lines
662 B
C
36 lines
662 B
C
/* $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 <noog@libero.it>
|
|
* UPDATE HISTORY:
|
|
* 15/05/2002: Created
|
|
*/
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <errno.h>
|
|
|
|
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 */
|
|
|