Skip to content
Snippets Groups Projects
xxxMain.c 339 B
Newer Older
Ron Sluiter's avatar
Ron Sluiter committed
/* xxxMain.c */
/* Author:  Ron Sluiter */

#include <stddef.h>
#include <stdlib.h>
#include <stddef.h>
#include <string.h>
#include <stdio.h>

#include "epicsThread.h"
#include "iocsh.h"

int main(int argc,char *argv[])
{
    if(argc>=2) {    
        iocsh(argv[1]);
        epicsThreadSleep(.2);
    }
    iocsh(NULL);
    return(0);
}