mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-23 20:05:01 +00:00
printf implementation
This commit is contained in:
parent
cefd3d95ed
commit
551455e56e
6 changed files with 72 additions and 11 deletions
9
src/Emulator/HLE/Libraries/LibC/libc.cpp
Normal file
9
src/Emulator/HLE/Libraries/LibC/libc.cpp
Normal file
|
@ -0,0 +1,9 @@
|
|||
#include "libc.h"
|
||||
|
||||
namespace Emulator::HLE::Libraries::LibC {
|
||||
|
||||
PS4_SYSV_ABI int printf(VA_ARGS) {
|
||||
VA_CTX(ctx);
|
||||
return printf_ctx(&ctx);
|
||||
}
|
||||
}; // namespace Emulator::HLE::Libraries::LibC
|
Loading…
Add table
Add a link
Reference in a new issue