summaryrefslogtreecommitdiff
path: root/src/main.c
blob: 97310fcf108deed58b07859379ee47dd1a9d0108 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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;
}