forgot _sbrk(), _fstat(), _times()

This commit is contained in:
eck
1990-01-19 16:25:54 +00:00
parent 463b3c5b76
commit caea5fe61b
6 changed files with 96 additions and 3 deletions

View File

@@ -37,7 +37,7 @@ fstat(fd, buf)
char Xbuf[100];
int retval;
retval = _fstat(fd, Xbuf);
retval = __fstat(fd, Xbuf);
Xcvt(Xbuf, (char *)buf);
return retval;
}