lokinet/daemon/main.c

11 lines
162 B
C
Raw Normal View History

2017-10-03 19:14:46 +00:00
#include <sarp.h>
2017-09-28 17:02:05 +00:00
int main(int argc, char * argv[])
{
2017-10-03 19:14:46 +00:00
struct sarp_router * router = NULL;
struct sarp_alloc mem;
sarp_mem_jemalloc(&mem);
2017-09-28 17:02:05 +00:00
return 0;
}