mirror of
https://github.com/matrix-construct/construct
synced 2024-11-01 11:29:05 +01:00
10 lines
179 B
C
10 lines
179 B
C
|
/* 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);
|
||
|
}
|