Skip to content

Instantly share code, notes, and snippets.

View ZakomakotheZBH's full-sized avatar

ZAKO MAKO ZakomakotheZBH

View GitHub Profile
@ZakomakotheZBH
ZakomakotheZBH / userspace.c
Last active April 6, 2026 22:14 — forked from anubhavshrimal/userspace.c
Kernel for Zewlinux
#include <stdio.h>
#include <linux/kernel.h>
#include <sys/syscall.h>
#include <unistd.h>
int main()
{
long int amma = syscall(548);
printf("RANDOMCALLZEW %ld\n", amma);
return 0;
}