PZhx09 2018-03-21 04:02 采纳率: 100%
浏览 2757
已采纳

linux下C语言使用stdio.h库中popen和pclose函数编译报错

error: implicit declaration of function ‘popen’; did you mean ‘fopen’? [-Werror=implicit-function-declaration]
error: implicit declaration of function ‘pclose’; did you mean ‘fclose’? [-Werror=implicit-function-declaration]
请问下为什么这样会报隐式声明错误呀?

源代码如下:

        GList *fList = s_wEntries;
        s_wEntries=NULL;
        FILE *fstream=NULL;
        char buff[1024];
        memset(buff,0,sizeof(buff));
        // execute command get all video
        char *launchword="find / -name *";
        strcat(launchword,cText);
        strcat(launchword,"*");
        if(NULL==(fstream=popen(launchword,"r")))
        {


        }
        else
        {
            memset(buff, 0x00, sizeof(buff));
            FileEntryInfo *Finfo;
            GtkMenuItem* searchmenuitem;
            while(NULL!=fgets(buff, sizeof(buff), fstream)){
                   if(buff[0]=='/')
                   {


                        searchmenuitem=gtk_menu_item_new_with_label(buff);
                        Finfo->uri=buff;
                        Finfo->pMenuItem=searchmenuitem;
                        g_list_prepend(s_wEntries,Finfo);   
                   }

                memset(buff, 0x00, sizeof(buff));
            }
            pclose(fstream);
        }
  • 写回答

4条回答 默认 最新

  • YenZiHua 2018-03-21 05:04
    关注

    popen(), pclose(): _POSIX_C_SOURCE >= 2 || _XOPEN_SOURCE || _POSIX_SOURCE _BSD_SOURCE || _SVID_SOURCE

    glibc是否支持这两个函数,需要测试上面的几个宏是否define了。如果这几个宏有任意一个define,则支持,否则就是不支持啦。

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥50 husky+jaco2实现在gazebo与rviz中联合仿真
  • ¥15 dpabi预处理报错:Error using y_ExtractROISignal (line 251)
  • ¥15 在虚拟机中配置flume,无法将slave1节点的文件采集到master节点中
  • ¥15 husky+kinova jaco2 仿真
  • ¥15 MATLAB数据处理
  • ¥15 zigbee终端设备入网失败
  • ¥15 金融监管系统怎么对7+4机构进行监管的
  • ¥15 硬件IIC从模式的数据发送,中断数据的接收,不能用HAL库(按照时序图)
  • ¥20 QAxWidget上显示一个word文档后,如何直接在该QAxWidget上修改和保存word文档
  • ¥15 Simulink仿真报错,请问如何解决