Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/abs32le/src/abs32le.c

    rb2e121a r44a7ee5  
    3838#include <arch/asm.h>
    3939
    40 #include <halt.h>
     40#include <func.h>
    4141#include <config.h>
    4242#include <console/console.h>
     
    105105int context_save_arch(context_t *ctx)
    106106{
    107         return EOK;
     107        return 1;
    108108}
    109109
     
    125125}
    126126
    127 errno_t memcpy_from_uspace(void *dst, const void *uspace_src, size_t size)
     127int memcpy_from_uspace(void *dst, const void *uspace_src, size_t size)
    128128{
    129129        return EOK;
    130130}
    131131
    132 errno_t memcpy_to_uspace(void *uspace_dst, const void *src, size_t size)
     132int memcpy_to_uspace(void *uspace_dst, const void *src, size_t size)
    133133{
    134134        return EOK;
Note: See TracChangeset for help on using the changeset viewer.