Ignore:
File:
1 edited

Legend:

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

    r9be9c4d rc5cb943d  
    193193 * @param ptr   Place to store pointer to new string.
    194194 */
    195 int os_input_line(const char *prompt, char **ptr)
    196 {
    197         printf("%s", prompt);
    198 
     195int os_input_line(char **ptr)
     196{
    199197        if (fgets(os_input_buffer, OS_INPUT_BUFFER_SIZE, stdin) == NULL)
    200198                os_input_buffer[0] = '\0';
Note: See TracChangeset for help on using the changeset viewer.