aboutsummaryrefslogtreecommitdiff
path: root/grundgeruest/conv.c
blob: efa820047bc79893a34248750357d7b965bb65c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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);
}