make ringPointerTestMain a .cpp file; timerTest is obsolete

This commit is contained in:
Marty Kraimer
2001-07-25 15:21:38 +00:00
parent ca14e4eabc
commit e573c4362f
4 changed files with 3 additions and 111 deletions

View File

@@ -0,0 +1,29 @@
/* ringPointerTestMain.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>
#include <ctype.h>
#include "epicsThread.h"
extern "C" {
void ringPointerTest(void);
}
int main()
{
ringPointerTest();
printf("main terminating\n");
return(0);
}