Changes in uspace/app/sbi/src/os/posix.c [9be9c4d:c5cb943d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/os/posix.c
r9be9c4d rc5cb943d 193 193 * @param ptr Place to store pointer to new string. 194 194 */ 195 int os_input_line(const char *prompt, char **ptr) 196 { 197 printf("%s", prompt); 198 195 int os_input_line(char **ptr) 196 { 199 197 if (fgets(os_input_buffer, OS_INPUT_BUFFER_SIZE, stdin) == NULL) 200 198 os_input_buffer[0] = '\0';
Note:
See TracChangeset
for help on using the changeset viewer.