Changeset 63e27ef in mainline for kernel/generic/src/console/prompt.c
- Timestamp:
- 2017-06-19T21:47:42Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- deacc58d
- Parents:
- 7354b5e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/console/prompt.c
r7354b5e r63e27ef 37 37 */ 38 38 39 #include <assert.h> 39 40 #include <console/prompt.h> 40 41 … … 49 50 bool console_prompt_display_all_hints(indev_t *indev, size_t hints) 50 51 { 51 ASSERT(indev);52 ASSERT(hints > 0);52 assert(indev); 53 assert(hints > 0); 53 54 54 55 printf("Display all %zu possibilities? (y or n) ", hints); … … 81 82 bool console_prompt_more_hints(indev_t *indev, size_t *display_hints) 82 83 { 83 ASSERT(indev);84 ASSERT(display_hints != NULL);84 assert(indev); 85 assert(display_hints != NULL); 85 86 86 87 printf("--More--");
Note:
See TracChangeset
for help on using the changeset viewer.