home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Developer Toolbox 6.1
/
SGI Developer Toolbox 6.1 - Disc 4.iso
/
src
/
swtools
/
mipsABI
/
examples
/
before
/
gettime.c
< prev
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
|
1994-08-02
|
164 b
|
15 lines
/*
* illustrates the use of the gettimeofday routine
*
*/
#include <sys/time.h>
main ()
{
struct timeval tv;
struct timezone tz;
gettimeofday(&tv, &tz);
}