added tests for StretchBlt, PatBlt and BitBlt by Damon Chandler
[reactos.git] / posix / lib / psxdll / sys / stat / stat.c
1 /* $Id: stat.c,v 1.1 2002/05/17 02:10:41 hyperion Exp $
2 */
3 /*
4 * COPYRIGHT: See COPYING in the top level directory
5 * PROJECT: ReactOS POSIX+ Subsystem
6 * FILE: subsys/psx/lib/psxdll/sys/stat/stat.c
7 * PURPOSE: Get file status
8 * PROGRAMMER: KJK::Hyperion <noog@libero.it>
9 * UPDATE HISTORY:
10 * 15/05/2002: Created
11 */
12
13 #include <sys/types.h>
14 #include <sys/stat.h>
15 #include <errno.h>
16
17 int fstat(int fildes, struct stat *buf)
18 {
19 errno = ENOSYS;
20 return (-1);
21 }
22
23 int lstat(const char *path, struct stat *buf)
24 {
25 errno = ENOSYS;
26 return (-1);
27 }
28
29 int stat(const char *path, struct stat *buf)
30 {
31 errno = ENOSYS;
32 return (-1);
33 }
34
35 /* EOF */
36