Initial revision
This commit is contained in:
13
mach/minixST/libsys/time.c
Normal file
13
mach/minixST/libsys/time.c
Normal file
@@ -0,0 +1,13 @@
|
||||
#include "lib.h"
|
||||
|
||||
PUBLIC long time(tp)
|
||||
long *tp;
|
||||
{
|
||||
int k;
|
||||
long l;
|
||||
k = callm1(FS, TIME, 0, 0, 0, NIL_PTR, NIL_PTR, NIL_PTR);
|
||||
if (M.m_type < 0 || k != OK) {errno = -M.m_type; return(-1L);}
|
||||
l = M.m2_l1;
|
||||
if (tp != (long *) 0) *tp = l;
|
||||
return(l);
|
||||
}
|
||||
Reference in New Issue
Block a user