Ignore:
File:
1 edited

Legend:

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

    re98f1c3e r24abb85d  
    3939 */
    4040
     41#include <assert.h>
    4142#include <console/kconsole.h>
    4243#include <console/console.h>
     
    5455#include <str.h>
    5556#include <sysinfo/sysinfo.h>
    56 #include <ddi/device.h>
    5757#include <symtab.h>
    5858#include <errno.h>
     
    633633    size_t *start, size_t *end)
    634634{
    635         ASSERT(start != NULL);
    636         ASSERT(end != NULL);
     635        assert(start != NULL);
     636        assert(end != NULL);
    637637       
    638638        bool found_start = false;
Note: See TracChangeset for help on using the changeset viewer.