使用 usleep 函数时出错,因为编译器显示“尽管包含所有需要的库,但未在此范围内声明‘usleep’”

问题描述 投票:0回答:1

我的代码如下:

#include <stdlib.h>
#include <time.h>
#include <unistd.h>
#include <windows.h>

int main()
{
    printf("test");
    usleep(1000000);
    printf("test");


    return 0;
}

我被告知“错误:'usleep'未在此范围内声明”。我正在使用 c free 编译器,如果这有什么不同的话,我完全不确定为什么这段代码没有编译,因为包含了所有需要的库。

c libraries usleep
1个回答
0
投票

您只需包括:

#包括

© www.soinside.com 2019 - 2024. All rights reserved.