add timerTest

This commit is contained in:
Marty Kraimer
2000-02-11 17:01:42 +00:00
parent ff969e6f48
commit d85256a196
3 changed files with 115 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
/* timerTestMain.c */
/* Author: Marty Kraimer Date: 26JAN2000 */
/********************COPYRIGHT NOTIFICATION**********************************
This software was developed under a United States Government license
described on the COPYRIGHT_UniversityOfChicago file included as part
of this distribution.
****************************************************************************/
#include <stddef.h>
#include <stdlib.h>
#include <stddef.h>
#include <string.h>
#include <stdio.h>
void timerTest(void);
int main(int argc,char *argv[])
{
timerTest();
printf("main terminating\n");
return(0);
}