summaryrefslogtreecommitdiff
path: root/userspace/simple.c
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2014-11-20 20:24:18 +0100
committerMichal Idziorek <m.i@gmx.at>2014-11-20 20:24:18 +0100
commit1a6da07e9a6ef7661a58cb6ce22b2874370d6c0d (patch)
tree9d13767cfce0fc0c9f78aed42385533673065e98 /userspace/simple.c
parent1acde03a7c0f85aca9919e374e3df6cee6f0bd08 (diff)
experimenting wih userspace and syscalls
Diffstat (limited to 'userspace/simple.c')
-rw-r--r--userspace/simple.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/userspace/simple.c b/userspace/simple.c
index 59bd4f1..e3bca65 100644
--- a/userspace/simple.c
+++ b/userspace/simple.c
@@ -4,10 +4,11 @@ int main(int argc, char **argv)
{
int i;
- for(i=0;i<10;i++)
+ for(i=0;i<5;i++)
{
- write(1,"dupa\n",5);
+ puts("dupa");
+
}
// replace with foolshell after finishing!