Ignore:
File:
1 edited

Legend:

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

    rb2e121a r6c742f5e  
    4040#include <arch/drivers/ucb.h>
    4141
    42 #include <halt.h>
     42#include <func.h>
    4343#include <config.h>
    4444#include <errno.h>
     
    143143}
    144144
    145 errno_t memcpy_from_uspace(void *dst, const void *uspace_src, size_t size)
     145int memcpy_from_uspace(void *dst, const void *uspace_src, size_t size)
    146146{
    147147        return EOK;
    148148}
    149149
    150 errno_t memcpy_to_uspace(void *uspace_dst, const void *src, size_t size)
     150int memcpy_to_uspace(void *uspace_dst, const void *src, size_t size)
    151151{
    152152        return EOK;
Note: See TracChangeset for help on using the changeset viewer.