Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/porting/adapter/system/tkl_memory.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ void *tkl_system_memset(void* src, int ch, const size_t n);
*
* @return the memory address malloced
*/
void *tkl_system_memcpy(void* src, const void* dst, const size_t n);
void *tkl_system_memcpy(void* dst, const void* src, const size_t n);

/**
* @brief Allocate and clear the memory
Expand Down