mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-01-19 13:08:27 +00:00
9 lines
193 B
C++
9 lines
193 B
C++
|
#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
|