通过对下面程序的分析,发现clock_t 应该是类,  初步估计它的定义应该是放在time.h 这个头文件里面的,但是,我打开time.h 文件看过, 又没有关于clock_t 的定义, 请问为什么#include <stdio.h>
#include <stdlib.h>
#include <time.h>void sleep( clock_t wait ); main(  )
{
   long    i = 600000L;
   clock_t start, finish;                        //clock_t 应该是类
   double  duration;   /* Delay for a specified time. */
 
   sleep( (clock_t)3 * CLOCKS_PER_SEC );
   /* Measure the duration of an event. */
   printf( "Time to do %ld empty loops is ", i );
   start = clock();
   while( i-- ) 
      ;
   finish = clock();
   duration = (double)(finish - start) / CLOCKS_PER_SEC;
   printf( "%2.1f seconds\n", duration );
}
void sleep( clock_t wait )
{
   clock_t goal;
   goal = wait + clock();
   
}