ircd: add main.c stub executable

This commit is contained in:
William Pitcock 2016-01-06 23:57:35 -06:00
parent 415b482ce3
commit 63f53befd3

9
ircd/main.c Normal file
View file

@ -0,0 +1,9 @@
/* This file is in the public domain. */
extern int charybdis_main(int argc, const char *argv[]);
int
main(int argc, const char *argv[])
{
return charybdis_main(argc, argv);
}