diff options
Diffstat (limited to 'src/Main.cpp')
-rw-r--r-- | src/Main.cpp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/Main.cpp b/src/Main.cpp index ccdaef8..17ea869 100644 --- a/src/Main.cpp +++ b/src/Main.cpp @@ -9,8 +9,14 @@ * Douglas M. Pase - initial API and implementation * *******************************************************************************/ -#include <stdio.h> +// +// Configuration +// +// System includes +#include <cstdio> + +// Local includes #include "Run.h" #include "Timer.h" #include "Types.h" @@ -48,6 +54,11 @@ // pointers may be 32-bit or 64-bit // pointers. + +// +// Implementation +// + int verbose = 0; int main(int argc, char* argv[]) { |