mirror of
https://github.com/Binary-Coalescence/motorDSM.git
synced 2025-08-04 21:55:40 -05:00
The following case replacements were applied (in order): AcsRegister -> dsmRegister Acs_LIBS -> dsm_LIBS ' Acs' -> ' dsm' acs -> dsm Acs -> Dsm ACS -> DSM
24 lines
403 B
C++
24 lines
403 B
C++
/* dsmMain.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);
|
|
}
|