home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer 7500
/
MAX_PROGRAMMERS.iso
/
CLIPPER
/
MISC
/
EMXLIB8F.ZIP
/
EMX
/
LIB
/
TIME
/
CLOCK.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1993-01-02
|
236 b
|
14 lines
/* clock.c (emx+gcc) -- Copyright (c) 1990-1993 by Eberhard Mattes */
#include <sys/emx.h>
#include <time.h>
#if CLOCKS_PER_SEC != 100
emx must be changed!
#endif
clock_t clock (void)
{
return ((clock_t)__clock ());
}