home *** CD-ROM | disk | FTP | other *** search
- #include "defs.h"
-
- /// "Prototypes"
-
- Prototype long InitC(void);
- Prototype void ExitC(void);
-
- ///
- /// "Init"
-
- /* ----------------------------------- InitC -----------------------------------
-
- Library startup code (C entry point).
-
- */
-
- long
- InitC(void)
- {
- return(MemoryInit());
- }
-
- ///
- /// "Exit"
-
- /* ----------------------------------- ExitC -----------------------------------
-
- Library cleanup code
-
- */
-
- void
- ExitC(void)
- {
- MemoryExit();
- }
-
- ///
-