1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-02 15:29:33 +00:00
cc65/testcode/lib/clock.c
Greg King 0390c34e88 Changed multi-line C comments into another style.
The left side doesn't look unbalanced.
2014-06-30 16:51:07 -04:00

25 lines
415 B
C

/*
** simple clock test
**
** 06-Nov-2001, Christian Groessler
*/
#include <stdio.h>
#include <conio.h>
#include <time.h>
int main(void)
{
printf("\ncc65 time routines test program\n");
printf("-------------------------------\n");
printf("clocks per second: %d\n", CLOCKS_PER_SEC);
printf("current clock: %ld\n", clock());
printf("hit <return> to exit...");
cgetc();
printf("\n");
return(0);
}