Changeset b7fd2a0 in mainline for uspace/app/sbi/src/os/helenos.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/sbi/src/os/helenos.c
r36f0738 rb7fd2a0 151 151 * EIO on decoding error. 152 152 */ 153 int os_str_get_char(const char *str, int index, int *out_char)153 errno_t os_str_get_char(const char *str, int index, int *out_char) 154 154 { 155 155 size_t offset; … … 210 210 * @param ptr Place to store pointer to new string. 211 211 */ 212 int os_input_line(const char *prompt, char **ptr)212 errno_t os_input_line(const char *prompt, char **ptr) 213 213 { 214 214 char *line; 215 int rc;215 errno_t rc; 216 216 217 217 if (tinput == NULL) { … … 247 247 * Command is present just one, not duplicated. 248 248 */ 249 int os_exec(char *const cmd[])249 errno_t os_exec(char *const cmd[]) 250 250 { 251 251 task_id_t tid; 252 252 task_wait_t twait; 253 253 task_exit_t texit; 254 int rc;254 errno_t rc; 255 255 int retval; 256 256
Note:
See TracChangeset
for help on using the changeset viewer.