aboutsummaryrefslogtreecommitdiff
path: root/aufgabe2/log.c
blob: 405cdbd403fc8664ceee4d8d87cc5b084c30725c (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 log() {
    printf("log started\n");
    for (;;) {
    }
}

void log_cleanup() {
    printf("log cleanup\n");
    _exit(EXIT_SUCCESS);
}