Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/sbi/src/os/helenos.c

    rb7fd2a0 r1c635d6  
    151151 *                      EIO on decoding error.
    152152 */
    153 errno_t os_str_get_char(const char *str, int index, int *out_char)
     153int os_str_get_char(const char *str, int index, int *out_char)
    154154{
    155155        size_t offset;
    156156        int i;
    157         wchar_t c = 0;
     157        wchar_t c;
    158158
    159159        if (index < 0)
     
    210210 * @param ptr   Place to store pointer to new string.
    211211 */
    212 errno_t os_input_line(const char *prompt, char **ptr)
     212int os_input_line(const char *prompt, char **ptr)
    213213{
    214214        char *line;
    215         errno_t rc;
     215        int rc;
    216216
    217217        if (tinput == NULL) {
     
    247247 *              Command is present just one, not duplicated.
    248248 */
    249 errno_t os_exec(char *const cmd[])
     249int os_exec(char *const cmd[])
    250250{
    251251        task_id_t tid;
    252252        task_wait_t twait;
    253253        task_exit_t texit;
    254         errno_t rc;
    255         int retval;
     254        int rc, retval;
    256255
    257256        rc = task_spawnv(&tid, &twait, cmd[0], (char const * const *) cmd);
Note: See TracChangeset for help on using the changeset viewer.