ack/mach/m68020/libsys/Xstat.c

44 lines
582 B
C
Raw Permalink Normal View History

1987-11-03 14:43:40 +00:00
#include <sys/types.h>
#include <sys/stat.h>
static Xcvt();
int
stat(path, buf)
char *path;
struct stat *buf;
{
char Xbuf[100];
int retval;
retval = _stat(path, Xbuf);
Xcvt(Xbuf, (char *)buf);
return retval;
}
int
fstat(fd, buf)
int fd;
struct stat *buf;
{
char Xbuf[100];
int retval;
1990-01-22 08:51:54 +00:00
retval = __fstat(fd, Xbuf);
1987-11-03 14:43:40 +00:00
Xcvt(Xbuf, (char *)buf);
return retval;
}
static
Xcvt(buf, statbuf)
char *buf, *statbuf;
{
register char *s, *t;
register int i;
s = buf; t = statbuf;
for (i = 14; i; i--) *t++ = *s++;
*t++ = 0; *t++ = 0;
for (i = 16; i; i--) *t++ = *s++;
}