23 lines
293 B
C
23 lines
293 B
C
/*
|
|
*
|
|
* Copyright 2023 Oleg Borodin <borodin@unix7.org>
|
|
*
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
//#include <fcntl.h>
|
|
//#include <clconfig.h>
|
|
#include <massert.h>
|
|
|
|
#include <server.h>
|
|
|
|
|
|
int main(int argc, char** argv) {
|
|
(void)argc;
|
|
(void)argv;
|
|
|
|
server_init();
|
|
|
|
return 0;
|
|
}
|