import (picrin base) to (picrin user) by default

This commit is contained in:
Yuichi Nishiwaki 2014-09-17 03:40:10 +09:00
parent dbbc2c1a25
commit e7c9b15d1f
2 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,6 @@ main(int argc, char *argv[])
pic = pic_open(argc, argv, NULL);
pic_import_library(pic, pic->PICRIN_BASE);
while (1) {
printf("> ");

2
init.c
View File

@ -141,4 +141,6 @@ pic_init_core(pic_state *pic)
pic_load_cstr(pic, pic_boot);
}
pic_import_library(pic, pic->PICRIN_BASE);
}