Changeset b7fd2a0 in mainline for uspace/app/bdsh/input.c
- Timestamp:
- 2018-01-13T03:10:29Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a53ed3a
- Parents:
- 36f0738
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/input.c
r36f0738 rb7fd2a0 65 65 * invokes the built-in entry point (a[0]) passing all arguments in a[] to 66 66 * the handler */ 67 int process_input(cliuser_t *usr)67 errno_t process_input(cliuser_t *usr) 68 68 { 69 69 token_t *tokens_buf = calloc(WORD_MAX, sizeof(token_t)); … … 73 73 74 74 char *cmd[WORD_MAX]; 75 int rc = EOK;75 errno_t rc = EOK; 76 76 tokenizer_t tok; 77 77 unsigned int i, pipe_count, processed_pipes; … … 259 259 { 260 260 char *str; 261 int rc;261 errno_t rc; 262 262 263 263 tinput_set_prompt(tinput, usr->prompt);
Note:
See TracChangeset
for help on using the changeset viewer.