search for: _sys_stat_h

Displaying 1 result from an estimated 1 matches for "_sys_stat_h".

Did you mean: sys_stat_h
2009 Mar 05
1
[PATCH 4/5] COM32: add trivial stat() function
...--git a/com32/include/sys/stat.h b/com32/include/sys/stat.h index ffc4105..2a06a68 100644 --- a/com32/include/sys/stat.h +++ b/com32/include/sys/stat.h @@ -49,4 +49,6 @@ struct stat { /* Only fstat() supported */ int fstat(int, struct stat *); +int stat(const char *, struct stat *); + #endif /* _SYS_STAT_H */ diff --git a/com32/lib/Makefile b/com32/lib/Makefile index 0cc4061..21379b4 100644 --- a/com32/lib/Makefile +++ b/com32/lib/Makefile @@ -32,7 +32,7 @@ LIBOBJS = \ sys/entry.o sys/exit.o sys/argv.o sys/times.o \ sys/fileinfo.o sys/opendev.o sys/read.o sys/write.o...