Changeset 46577995 in mainline for uspace/app/sbi/src/program.c
- Timestamp:
- 2018-01-04T20:50:52Z (8 years ago)
- Children:
- e211ea04
- Parents:
- facacc71
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:47:53)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:50:52)
- File:
-
- 1 edited
-
uspace/app/sbi/src/program.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/program.c
rfacacc71 r46577995 55 55 * EINVAL if file has syntax errors. 56 56 */ 57 int program_file_process(stree_program_t *program, const char *fname)57 errno_t program_file_process(stree_program_t *program, const char *fname) 58 58 { 59 59 input_t *input; 60 60 lex_t lex; 61 61 parse_t parse; 62 int rc;62 errno_t rc; 63 63 64 64 rc = input_new_file(&input, fname); … … 91 91 * has syntax errors. 92 92 */ 93 int program_lib_process(stree_program_t *program)93 errno_t program_lib_process(stree_program_t *program) 94 94 { 95 int rc;95 errno_t rc; 96 96 char *path, *fname; 97 97 char *tmp;
Note:
See TracChangeset
for help on using the changeset viewer.
