Changes in uspace/app/sbi/src/os/helenos.c [d5c1051:b7fd2a0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/os/helenos.c
rd5c1051 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.