21 lines
298 B
C
21 lines
298 B
C
#ifndef SIMUL_EFUN_H
|
|
#define SIMUL_EFUN_H
|
|
|
|
#include "lpc_incl.h"
|
|
|
|
/*
|
|
* simul_efun.c
|
|
*/
|
|
|
|
extern object_t *simul_efun_ob;
|
|
extern function_lookup_info_t *simuls;
|
|
|
|
void init_simul_efun (char *);
|
|
void set_simul_efun (object_t *);
|
|
|
|
#ifdef DEBUGMALLOC_EXTENSIONS
|
|
void mark_simuls (void);
|
|
#endif
|
|
|
|
#endif
|