0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-16 07:28:38 +02:00
construct/ircd/main.c

10 lines
179 B
C
Raw Normal View History

2016-01-07 06:57:35 +01:00
/* 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);
}