summaryrefslogtreecommitdiff
path: root/userspace/simple.c
blob: e3bca65809ef7042595298dcee2a2f892f7c59d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "syscalls.c"

int main(int argc, char **argv) 
{
    int i;

    for(i=0;i<5;i++)
    {
    
	puts("dupa");

    }
    
    // replace with foolshell after finishing!
    execve(15,0,0);
}