- ofac.c contains now only the command in initialisation function list - the other functions are moved to sicsutil.c - moved DoubleTime and the content of access.c to sicsutil.c - moved some initialisation code from ofac.c to the corresponding modules
22 lines
351 B
C
22 lines
351 B
C
/**
|
|
* Startup commands and definitions
|
|
*
|
|
* copyright: see file COPYRIGHT
|
|
*
|
|
*
|
|
* Mark Koennecke 1996 - ?
|
|
* Markus Zolliker Jan 2010
|
|
*/
|
|
|
|
#ifndef OBJECTFACTORY
|
|
#define OBJECTFACTORY
|
|
#include "sics.h"
|
|
|
|
/* module initialisation calls */
|
|
void InitGeneral(void);
|
|
|
|
/* module initialisation calls */
|
|
void InitIniCommands(SicsInterp * pInter);
|
|
|
|
#endif
|