Ignore:
File:
1 edited

Legend:

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

    rb7fd2a0 rcf13b17  
    114114 * @return      Zero if equal, nonzero if not equal
    115115 */
    116 errno_t os_str_cmp(const char *a, const char *b)
     116int os_str_cmp(const char *a, const char *b)
    117117{
    118118        return strcmp(a, b);
     
    147147 *                      EIO on decoding error.
    148148 */
    149 errno_t os_str_get_char(const char *str, int index, int *out_char)
     149int os_str_get_char(const char *str, int index, int *out_char)
    150150{
    151151        size_t len;
     
    193193 * @param ptr   Place to store pointer to new string.
    194194 */
    195 errno_t os_input_line(const char *prompt, char **ptr)
     195int os_input_line(const char *prompt, char **ptr)
    196196{
    197197        printf("%s", prompt);
     
    214214 *              Command is present just one, not duplicated.
    215215 */
    216 errno_t os_exec(char *const cmd[])
     216int os_exec(char *const cmd[])
    217217{
    218218        pid_t pid;
Note: See TracChangeset for help on using the changeset viewer.