minor cleanup

This commit is contained in:
Justin Meza 2014-08-31 14:36:07 -07:00
parent 6384a4c504
commit 46590f3886
1 changed files with 0 additions and 8 deletions

View File

@ -15,14 +15,6 @@
#include "interpreter.h"
/**
* Stores a binding to an external library call to export.
*/
typedef struct {
IdentifierNode *library; /**< The library this binding belongs to. */
FuncDefStmtNode *interface; /**< The interface that exports the binding. */
} Binding;
ValueObject *getArg(struct scopeobject *, char *);
void loadLibrary(ScopeObject *, IdentifierNode *);
void loadBinding(ScopeObject *, char *, const char *, struct returnobject *(*)(struct scopeobject *));