summaryrefslogtreecommitdiff
path: root/src/main.c
blob: b0727e2294d0f8832c11334376475ef5f2374152 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "arena.h"
#include "encryption.h"
#include "ll.h"
#include "scanner.h"
#include "shared.h"
#include "threadpool.h"

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

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

    return 0;
}