mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2026-04-09 19:23:18 -06:00
13 lines
288 B
C++
13 lines
288 B
C++
#pragma once
|
|
#include "../Loader/SymbolsResolver.h"
|
|
|
|
namespace HLE::Libs::LibC {
|
|
|
|
void LibC_Register(SymbolsResolver* sym);
|
|
|
|
//functions
|
|
static PS4_SYSV_ABI void init_env();
|
|
static PS4_SYSV_ABI void _Assert();
|
|
static PS4_SYSV_ABI void catchReturnFromMain(int status);
|
|
|
|
}; |