1991-09-03 14:22:32 +00:00
|
|
|
#include <lib.h>
|
|
|
|
#define stat _stat
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
PUBLIC int stat(name, buffer)
|
1991-09-19 12:46:16 +00:00
|
|
|
_CONST char *name;
|
1991-09-03 14:22:32 +00:00
|
|
|
struct stat *buffer;
|
|
|
|
{
|
|
|
|
return(_callm1(FS, STAT, _len(name), 0, 0,
|
|
|
|
(char *)name, (char *)buffer, NIL_PTR));
|
|
|
|
}
|