Files
unison/scratch/multiple-sources/simple-main.cc

10 lines
100 B
C++
Raw Normal View History

2008-06-16 14:17:27 +01:00
void RunSimulation (void);
int main (int argc, char *argv[])
{
RunSimulation ();
return 0;
}