0
#if defined(HAVE_TIMES)
#include <unistd.h>
static double cycles_diff(struct tms *a,struct tms *b)
{
clock_t aa = a->tms_utime +
a->tms_stime +
a->tms_cutime +
a->tms_cstime;
clock_t bb = b->tmstms_utime
+ b->tms_stime
+ b->tms_cutime
+ b->tms_cstime;
return (aa-bb)/(double)sysconf(_SC_CLK_TCK);
}
}
這給了錯誤不能編譯代碼
STRUC TMS和
的sysconf的
不完全類型聲明沒有宣佈
我包含該頭文件。但仍顯示以前的錯誤 – isaha