Revision 509a9409c3ac77103960177950d2d5c1ac3ade7a authored by Brad King on 05 March 2019, 14:42:58 UTC, committed by Brad King on 05 March 2019, 14:42:58 UTC
2 parent s 5c0ef41 + e427c7c
Raw File
Exec.c
void OneFunc();
void TwoFunc();

int main()
{
  OneFunc();
  TwoFunc();
  return 0;
}
back to top