Use _ versions of system-calls

This commit is contained in:
ceriel
1991-02-22 16:57:42 +00:00
parent 186324ac08
commit bd9ac66548
13 changed files with 43 additions and 44 deletions

View File

@@ -20,7 +20,7 @@
/* function clock:integer; extern; */
extern int times();
extern int _times();
struct tbuf {
long utime;
@@ -36,7 +36,7 @@ struct tbuf {
int clock() {
struct tbuf t;
times(&t);
_times(&t);
return( (int)(t.utime + t.stime) &
#if EM_WSIZE <= 2
077777