#ifndef _INCLUDE_LINKERFUNC_H
#define _INCLUDE_LINKERFUNC_H

/*
**  $VER: linkerfunc.h 1.02 (7.2.97)
**  StormC Release 3.0
**
**  '(C) Copyright 1995/96/97 Haage & Partner Computer GmbH'
**	 All Rights Reserved
*/

#ifdef __cplusplus
extern "C" {
#endif

void InitModules(void);
void CleanupModules(void);

void GetBaseReg(void);
void geta4(void); // for compatibility only, use GetBaseReg() instead

#ifdef __PPC__
void PPC_InitModules(void);
void PPC_CleanupModules(void);

void GetTOCReg(void);
#endif

#ifdef __cplusplus
}
#endif

#endif
