mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 07:31:32 +00:00
13 lines
217 B
C
Executable File
13 lines
217 B
C
Executable File
#include "config.h"
|
|
#include <_ansi.h>
|
|
#include <_syslist.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <errno.h>
|
|
|
|
int stat(const char *file, struct stat *st)
|
|
{
|
|
errno = ENOSYS;
|
|
return -1;
|
|
}
|