Skip to content
Snippets Groups Projects
kelvin-node.c 222 B
Newer Older
Ivan Deniskin's avatar
Ivan Deniskin committed
#include <errno.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>


int main(int argc, char **argv) {
    printf("Kelvin Node version 0.1");
    sleep(5);
    return 0;
}