remove commented function

This commit is contained in:
Yuichi Nishiwaki 2014-07-29 16:10:31 +09:00
parent 1ae29c8449
commit f26def254d
1 changed files with 0 additions and 12 deletions

View File

@ -421,18 +421,6 @@ pic_ref(pic_state *pic, const char *name)
return xh_val(xh_get_int(&pic->globals, rename), pic_value);
}
/* void */
/* pic_set(pic_state *pic, const char *name, pic_value value) */
/* { */
/* size_t gid; */
/* gid = global_ref(pic, name); */
/* if (gid == SIZE_MAX) { */
/* pic_error(pic, "symbol not defined"); */
/* } */
/* pic->globals[gid] = value; */
/* } */
pic_value
pic_funcall(pic_state *pic, const char *name, pic_list args)
{