summaryrefslogtreecommitdiff
path: root/src/main.c
blob: 1e4f96086c902575617777a74fc1e15314103dd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include "arena.h"
#include "encryption.h"
#include "ll.h"
#include "scanner.h"
#include "shared.h"
#include "threadpool.h"

#include <errno.h>
#include <error.h>
#include <printf.h>
#include <unistd.h>

int testcb(void *arg) {
    if(!arg)
        return -1;

    printf("%s\n", (char*)arg);

    return 0;
}

int main() {
    error(-1, ENOTSUP, "lol");

    return 0;
}