bd-jb/payload/payload.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;
}