~jsvoboda/helenos/sysel

« back to all changes in this revision

Viewing changes to uspace/app/sbi/src/builtin.c

  • Committer: Jiri Svoboda
  • Date: 2010-05-08 08:10:44 UTC
  • Revision ID: jiri@wiwaxia-20100508081044-5hvcjwu15rsfvgnv
Update SBI to rev. 244.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
#include "builtin/bi_error.h"
44
44
#include "builtin/bi_fun.h"
45
45
#include "builtin/bi_textfile.h"
 
46
#include "builtin/bi_string.h"
46
47
#include "input.h"
47
48
#include "intmap.h"
48
49
#include "lex.h"
89
90
        bi_error_declare(bi);
90
91
        bi_fun_declare(bi);
91
92
        bi_textfile_declare(bi);
 
93
        bi_string_declare(bi);
92
94
}
93
95
 
94
96
/** Bind internal interpreter references to symbols in the program.
104
106
        bi_error_bind(bi);
105
107
        bi_fun_bind(bi);
106
108
        bi_textfile_bind(bi);
 
109
        bi_string_bind(bi);
107
110
}
108
111
 
109
112
/** Get grandfather class.