Ignore:
File:
1 edited

Legend:

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

    r6c742f5e rb2e121a  
    4040#include <arch/drivers/ucb.h>
    4141
    42 #include <func.h>
     42#include <halt.h>
    4343#include <config.h>
    4444#include <errno.h>
     
    143143}
    144144
    145 int memcpy_from_uspace(void *dst, const void *uspace_src, size_t size)
     145errno_t memcpy_from_uspace(void *dst, const void *uspace_src, size_t size)
    146146{
    147147        return EOK;
    148148}
    149149
    150 int memcpy_to_uspace(void *uspace_dst, const void *src, size_t size)
     150errno_t 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.