Changeset 5a6cc679 in mainline for uspace/app/sbi/src/program.c
- Timestamp:
- 2018-01-31T02:21:24Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a0a9cc2
- Parents:
- 132ab5d1
- File:
-
- 1 edited
-
uspace/app/sbi/src/program.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/program.c
r132ab5d1 r5a6cc679 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.
