scratch/multiple-sources/simple-main.cc
author Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
Mon, 16 Jun 2008 14:17:27 +0100
changeset 3275 b0d91237f2ec
permissions -rw-r--r--
[Bug 221] need a scratch directory
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3275
b0d91237f2ec [Bug 221] need a scratch directory
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     1
b0d91237f2ec [Bug 221] need a scratch directory
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     2
void RunSimulation (void);
b0d91237f2ec [Bug 221] need a scratch directory
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     3
b0d91237f2ec [Bug 221] need a scratch directory
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     4
int main (int argc, char *argv[])
b0d91237f2ec [Bug 221] need a scratch directory
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     5
{
b0d91237f2ec [Bug 221] need a scratch directory
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     6
  RunSimulation ();
b0d91237f2ec [Bug 221] need a scratch directory
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     7
b0d91237f2ec [Bug 221] need a scratch directory
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     8
  return 0;
b0d91237f2ec [Bug 221] need a scratch directory
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     9
}