diff options
Diffstat (limited to 'aufgabe3/conv.c')
| -rw-r--r-- | aufgabe3/conv.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/aufgabe3/conv.c b/aufgabe3/conv.c new file mode 100644 index 0000000..efa8200 --- /dev/null +++ b/aufgabe3/conv.c @@ -0,0 +1,18 @@ +/* + * vim:ts=4:sw=4:expandtab + * + */ +#include <stdlib.h> +#include <stdio.h> +#include <unistd.h> + +void conv() { + printf("conv started\n"); + for (;;) { + } +} + +void conv_cleanup() { + printf("conv cleanup\n"); + _exit(EXIT_SUCCESS); +} |
