bd-jb/payload/payload.c

10 lines
211 B
C
Raw Normal View History

2021-10-24 11:23:44 -04:00
#include <stddef.h>
#include <stdint.h>
#include <sys/types.h>
2021-10-24 16:57:03 -04:00
typedef int32_t SceKernelModule;
int payload(int (* sceKernelDlsym)(SceKernelModule handle, const char *symbol, void **addrp)) {
2021-10-24 11:23:44 -04:00
return 1337;
}