12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #include <stdio.h>
- #include <stdlib.h>
- #include <sys/timeb.h>
- #include <time.h>
- #include "main.h"
- void JSPH_Test()
- {
- }
- int main(int argc, char *argv[])
- {
-
- setvbuf(stdout, NULL, _IONBF, 0);
- JSPH_Test();
- #if CODE_VERSION == CODE_VERSION_EXI
-
- return main_databinder(argc, argv);
- #elif CODE_VERSION == CODE_VERSION_SAMPLE
-
- return main_example(argc, argv);
- #endif
- }
|