30 lines
671 B
C++
30 lines
671 B
C++
/* 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);
|
|
}
|