Ignore:
File:
1 edited

Legend:

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

    r7ddc2c7 r63e27ef  
    3333 */
    3434
     35#include <assert.h>
    3536#include <adt/list.h>
    3637#include <console/chardev.h>
     
    3940#include <print.h>
    4041#include <func.h>
    41 #include <arch.h>
     42#include <cpu.h>
    4243
    4344/** Initialize input character device.
     
    6667void indev_push_character(indev_t *indev, wchar_t ch)
    6768{
    68         ASSERT(indev);
     69        assert(indev);
    6970       
    7071        irq_spinlock_lock(&indev->lock, true);
Note: See TracChangeset for help on using the changeset viewer.