bd-jb/payload/payload.c

13 lines
256 B
C
Raw Normal View History

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