~oubiwann/pymite/ipm-enhancements

« back to all changes in this revision

Viewing changes to src/vm/interp.c

  • Committer: dwhall256
  • Date: 2009-04-20 00:10:16 UTC
  • Revision ID: svn-v4:22ac2b26-2a8a-11de-a747-197756c87c9e:trunk:349
issue #16 patched from branch and mainlined

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#include "pm.h"
21
21
 
22
22
 
23
 
/** if retval is not OK, break from the interpreter */
24
 
#define PM_BREAK_IF_ERROR(retval) if((retval) != PM_RET_OK)break
25
 
 
26
 
 
27
23
extern PmReturn_t (*std_nat_fxn_table[]) (pPmFrame_t *);
28
24
extern PmReturn_t (*usr_nat_fxn_table[]) (pPmFrame_t *);
29
25