added new routines for ansi

This commit is contained in:
eck
1990-01-22 11:56:01 +00:00
parent dbe88218e4
commit a940c44ae5
35 changed files with 273 additions and 2 deletions

15
mach/sun2/libsys/_ftime.c Normal file
View File

@@ -0,0 +1,15 @@
#include <sys/types.h>
_ftime(p)
struct { time_t time; unsigned short millitm;
short timezone; short dstflag; } *p;
{
struct { long l1,l2; } t1,t2;
if (_gettimeofday(&t1,&t2) < 0) return -1;
p->time = t1.l1;
p->millitm = t1.l2/1000;
p->dstflag = t2.l2;
p->timezone = t2.l1;
return 0;
}