home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: sci.electronics
- Path: sparky!uunet!haven.umd.edu!darwin.sura.net!wupost!sdd.hp.com!nigel.msen.com!math.fu-berlin.de!pbinfo!caro
- From: caro@uni-paderborn.de (Carsten Rose)
- Subject: Re: 8051 assembler problems
- Message-ID: <1992Sep3.095723.2221@uni-paderborn.de>
- Sender: news@uni-paderborn.de (News Uni-Paderborn)
- Nntp-Posting-Host: obelix
- Organization: Uni-GH Paderborn
- X-Newsreader: Tin 1.1 PL4
- References: <20976@sbsvax.cs.uni-sb.de>
- Date: Thu, 3 Sep 1992 09:57:23 GMT
- Lines: 39
-
- tobl@sbustd.rz.uni-sb.de (Tobias Blickle) writes:
- : In article <1992Aug.10.230409.29929@uwm.edu> markh@csd4.csd.uwm.edu (Hunk) writes:
- ....cut simething....
-
- : I got this assembler source code but I have a little problem compiling
- : it: The compiler looks for the file "sys/timeb.h" when compiling
- : the file "io.c". My problem is that I haven't got the file "timeb.h"
- : for my compiler and I don't know what it's good for. I'm using the
- : gnu c-compiler.
-
- Look in include/sys/ .
-
- The file is very short, so here it is:
-
- Filename: include/sys/timeb.h
- ------------------------------------------------------------
- /* @(#)timeb.h 2.6 88/08/19 SMI; from UCB 4.2 81/02/19 */
-
- /*
- * Structure returned by ftime system call
- */
-
- #ifndef _sys_timeb_h
- #define _sys_timeb_h
-
- struct timeb
- {
- time_t time;
- unsigned short millitm;
- short timezone;
- short dstflag;
- };
-
- #endif /*!_sys_timeb_h*/
- ------------------------------------------------------------
-
- Ciao
-
- Carsten
-