ircd: add main.c stub executable
This commit is contained in:
parent
415b482ce3
commit
63f53befd3
1 changed files with 9 additions and 0 deletions
9
ircd/main.c
Normal file
9
ircd/main.c
Normal 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);
|
||||||
|
}
|
Loading…
Reference in a new issue