summaryrefslogtreecommitdiff
path: root/src/code/code_80069420.c
diff options
context:
space:
mode:
authorcadmic <cadmic24@gmail.com>2024-08-19 22:15:24 -0700
committerGitHub <noreply@github.com>2024-08-20 01:15:24 -0400
commitec70295357c198c48660e2ab5670c15ef6a661cf (patch)
tree0c46c5493c7538ced1e2d1ab6344251bd2673d31 /src/code/code_80069420.c
parentaba1bb88a3ed369ab450345a65f0176ceb0e482c (diff)
Move non-libultra libc functions to src/libc/ (#2055)
* Move non-libultra libc functions to src/libc/ * Add explicit nops in delay slots * Don't rely on CPP expanding undefined macros to 0 * Delete old Makefile rules * Fix type of memset()
Diffstat (limited to 'src/code/code_80069420.c')
-rw-r--r--src/code/code_80069420.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code/code_80069420.c b/src/code/code_80069420.c
index 9a190edcf..a08567dd6 100644
--- a/src/code/code_80069420.c
+++ b/src/code/code_80069420.c
@@ -27,7 +27,7 @@ void* MemCpy(void* dest, const void* src, s32 len) {
/**
* memset: sets `len` bytes to `val` starting at address `dest`.
*
- * @see There are two other memsets in this codebase, Lib_MemSet(), __osMemset().
+ * @see There are two other memsets in this codebase, Lib_MemSet(), memset().
* This one is unused.
*
* @param dest address to start at