diff options
Diffstat (limited to 'aufgabe3/conv.c')
| -rw-r--r-- | aufgabe3/conv.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/aufgabe3/conv.c b/aufgabe3/conv.c index efa8200..35b7d33 100644 --- a/aufgabe3/conv.c +++ b/aufgabe3/conv.c @@ -1,14 +1,20 @@ /* * vim:ts=4:sw=4:expandtab - * + * */ #include <stdlib.h> #include <stdio.h> #include <unistd.h> +#include "queue.h" + void conv() { - printf("conv started\n"); + int random_number = 0; + + sprintf(stderr, "conv() was started"); + for (;;) { + rand(); } } |
