bd-jb/payload/payload.c

13 lines
256 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 x = 1337;
int payload(int (*sceKernelDlsym)(SceKernelModule handle, const char *symbol,
void **addrp)) {
return x;
2021-10-24 11:23:44 -04:00
}