add defvar declaration (just a prototype. no definition)

This commit is contained in:
Yuichi Nishiwaki 2014-01-09 00:36:44 +09:00
parent 92ceedbd15
commit 88ce10e9fe
1 changed files with 1 additions and 0 deletions

View File

@ -101,6 +101,7 @@ struct pic_proc *pic_get_proc(pic_state *);
int pic_get_args(pic_state *, const char *, ...);
void pic_defun(pic_state *, const char *, pic_func_t);
void pic_defmacro(pic_state *, const char *, struct pic_proc *);
void pic_defvar(pic_state *, const char *, pic_value);
bool pic_equal_p(pic_state *, pic_value, pic_value);