Xref: utzoo comp.sources.bugs:1131 comp.sources.d:2546 Path: utzoo!attcan!uunet!lll-winken!lll-tis!ames!mailrus!b-tech!zeeff From: zeeff@b-tech.UUCP (Jon Zeeff) Newsgroups: comp.sources.bugs,comp.sources.d Subject: Re: ARC 5.21 Patch #1 Message-ID: <4659@b-tech.UUCP> Date: 1 Aug 88 13:38:14 GMT References: <385@clio.math.lsa.umich.edu> Reply-To: zeeff@b-tech.UUCP (Jon Zeeff) Organization: Branch Technology Ann Arbor, MI Lines: 43 The only problems I had compiling on a Sys V.3 '386 systems were 1) Line 33 of arcdos.c needs to include time.h instead of sys/time.h 2) ftime may be missing - here's one someone gave me ------ cut here ------------------- /* * Uglix ftime simulation */ #include #include /* HACK */ ftime(tp) struct timeb *tp; { time_t time(); tp->time = time(&tp->time); tp->millitm = 0; tp->timezone = 5*60; /* HACK */ tp->dstflag = 1; /* HACK */ } ----- cut here and put in /usr/include/sys/timeb.h ------------- /* structure returned by ftime() */ /* bsd */ struct timeb { time_t time; unsigned short millitm; short timezone; short dstflag; }; -------------------------------------- -- Jon Zeeff Branch Technology, uunet!umix!b-tech!zeeff zeeff%b-tech.uucp@umix.cc.umich.edu