mirror of
https://github.com/TheOfficialFloW/bd-jb
synced 2024-11-24 18:02:19 -05:00
13 lines
256 B
C
13 lines
256 B
C
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <sys/types.h>
|
|
|
|
typedef int32_t SceKernelModule;
|
|
|
|
int x = 1337;
|
|
|
|
int payload(int (*sceKernelDlsym)(SceKernelModule handle, const char *symbol,
|
|
void **addrp)) {
|
|
return x;
|
|
}
|