CLK_TCK在Mac上未声明

时间:2016-04-27 11:50:01

标签: c macos time.h

#include <stdio.h>
#include <time.h>

clock_t start, stop;

int main(){
    start = clock();
    function();
    stop = clock();
    double duration = (stop - start)/CLK_TCK;
    return 0;
}

我在Xcode中遇到了问题。 CLK_TCK未声明。 如何解决?

1 个答案:

答案 0 :(得分:0)

在Mac上使用CLOCKS_PER_SEC代替CLK_TCK