0_0_36707989_17889.cpp:20:1: error: 'clock_t' does not name a type
clock_t __stt;
^
0_0_36707989_17889.cpp: In function 'void TStart()':
0_0_36707989_17889.cpp:21:22: error: '__stt' was not declared in this scope
inline void TStart(){__stt=clock();}
^
0_0_36707989_17889.cpp:21:34: error: 'clock' was not declared in this scope
inline void TStart(){__stt=clock();}
^
0_0_36707989_17889.cpp: In function 'void TReport()':
0_0_36707989_17889.cpp:22:87: error: 'clock' was not declared in this scope
inline void TReport(){printf("\nCurrent Case Taken Time : %.3lf sec\n",(double)(clock()-__stt)/CLOCKS_PER_SEC);}
^
0_0_36707989_17889.cpp:22:89: error: '__stt' was not declared in this scope
inline void TReport(){printf("\nCurrent Case Taken Time : %.3lf sec\n",(double)(clock()-__stt)/CLOCKS_PER_SEC);}
^
0_0_36707989_17889.cpp:22:96: error: 'CLOCKS_PER_SEC' was not declared in this scope
inline void TReport(){printf("\nCurrent Case Taken Time : %.3lf sec\n",(double)(clock()-__stt)/CLOCKS_PER_SEC);}
^
|