aboutsummaryrefslogtreecommitdiff
path: root/src/cfetch.c
blob: 596e44b9c1c64a9333eed42bf0ae755d297f1c2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include "modules/os/os.h"
#include "modules/memory/memory.h"
#include "modules/cpu/cpu.h"
#include "logo/logo.h"

int main(void) {
    os();
    memory();
    cpu();
    print_logo();
    return 0;
}