Imported files from METIS SVN

This commit is contained in:
Bernardo Carvalho
2019-10-09 10:59:54 +01:00
parent 61d1517c44
commit 70c9ee4b76
473 changed files with 10804 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
/* ISTTOKrpiMain.cpp */
/* Author: Marty Kraimer Date: 17MAR2000 */
#include <stddef.h>
#include <stdlib.h>
#include <stddef.h>
#include <string.h>
#include <stdio.h>
#include "epicsExit.h"
#include "epicsThread.h"
#include "iocsh.h"
int main(int argc,char *argv[])
{
if(argc>=2) {
iocsh(argv[1]);
epicsThreadSleep(.2);
}
iocsh(NULL);
epicsExit(0);
return(0);
}