mirror of
https://github.com/TheOfficialFloW/bd-jb
synced 2025-01-08 12:08:02 -05:00
10 lines
211 B
C
10 lines
211 B
C
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <sys/types.h>
|
|
|
|
typedef int32_t SceKernelModule;
|
|
|
|
int payload(int (* sceKernelDlsym)(SceKernelModule handle, const char *symbol, void **addrp)) {
|
|
return 1337;
|
|
}
|