Ignore:
File:
1 edited

Legend:

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

    rdfc07c1 r63e27ef  
    3737 */
    3838
     39#include <assert.h>
    3940#include <console/prompt.h>
    4041
     
    4950bool console_prompt_display_all_hints(indev_t *indev, size_t hints)
    5051{
    51         ASSERT(indev);
    52         ASSERT(hints > 0);
     52        assert(indev);
     53        assert(hints > 0);
    5354       
    5455        printf("Display all %zu possibilities? (y or n) ", hints);
     
    8182bool console_prompt_more_hints(indev_t *indev, size_t *display_hints)
    8283{
    83         ASSERT(indev);
    84         ASSERT(display_hints != NULL);
     84        assert(indev);
     85        assert(display_hints != NULL);
    8586       
    8687        printf("--More--");
Note: See TracChangeset for help on using the changeset viewer.