shadPS4/src/Emulator/HLE/Libraries/LibC/libc.h

10 lines
151 B
C
Raw Normal View History

2023-10-06 13:19:09 +02:00
#pragma once
#include <types.h>
#include "printf.h"
namespace Emulator::HLE::Libraries::LibC {
//HLE functions
PS4_SYSV_ABI int printf(VA_ARGS);
}