Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/console/prompt.c

    r63e27ef rdfc07c1  
    3737 */
    3838
    39 #include <assert.h>
    4039#include <console/prompt.h>
    4140
     
    5049bool console_prompt_display_all_hints(indev_t *indev, size_t hints)
    5150{
    52         assert(indev);
    53         assert(hints > 0);
     51        ASSERT(indev);
     52        ASSERT(hints > 0);
    5453       
    5554        printf("Display all %zu possibilities? (y or n) ", hints);
     
    8281bool console_prompt_more_hints(indev_t *indev, size_t *display_hints)
    8382{
    84         assert(indev);
    85         assert(display_hints != NULL);
     83        ASSERT(indev);
     84        ASSERT(display_hints != NULL);
    8685       
    8786        printf("--More--");
Note: See TracChangeset for help on using the changeset viewer.