From e5f7cc4fe417fd8a67f656164af2bb15e2b1bba0 Mon Sep 17 00:00:00 2001 From: Princess-of-Sleeping <29831892+Princess-of-Sleeping@users.noreply.github.com> Date: Sat, 3 Feb 2024 09:11:41 +0900 Subject: [PATCH] Added sceClibDprintf prototype --- include/psp2/kernel/clib.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/psp2/kernel/clib.h b/include/psp2/kernel/clib.h index bbb04f95e..cef17fa44 100644 --- a/include/psp2/kernel/clib.h +++ b/include/psp2/kernel/clib.h @@ -45,6 +45,8 @@ int sceClibTolower(char ch); int sceClibToupper(char ch); int sceClibPrintf(const char *fmt, ...); +int sceClibDprintf(SceUID fd, const char *fmt, ...); + int sceClibSnprintf(char *dst, SceSize dst_max_size, const char *fmt, ...); int sceClibVsnprintf(char *dst, SceSize dst_max_size, const char *fmt, va_list args);