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

#include "encryption.h"
#include "scanner.h"
#include "threadpool.h"

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

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

    return 0;
}