home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Actual 11
/
CDACTUAL11.iso
/
cdactual
/
demobin
/
share
/
os2
/
MST
/
SRC
/
MST_EMX.C
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-06-22
|
345 b
|
12 lines
/* For GNU Smalltalk, since EMX obviously doesn't implement **
** the gethz function **
** I implement it as returning CLOCKS_PER_SEC as defined in emx's time.h. */
#include <time.h>
int gethz( void )
{
return CLOCKS_PER_SEC;
}