免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 6444 | 回复: 1
打印 上一主题 下一主题

[开发环境] 错误:sys/types.h :没有那个文件或目录 ,菜鸟求解 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-08-06 21:33 |只看该作者 |倒序浏览

Linux新手报道,像各位道友问声好。本人菜鸟一只,今天照着书上写了程序,用gcc编译,出现了错误提示:
[root@loveyou process]# gcc -Wall -o process process.c
process.c:15:24: 错误:sys/types.h :没有那个文件或目录

但是我去/usr/include/能找到types.h这个文件
求各位大神指点哈,在此感激不尽。

书上的代码如下:

/*
* Copyright (c) 2009-~ Hu bin
*
* This source code is released for free distribution under the terms of the
* GNU General Public License
*
* Author:       Hu Bin<hb198708@gmail.com>
* Created Time: 2013年08月06日 星期二 21时59分26秒
* File Name:    process.c
*
* Description:  
*/

#include <stdio.h>
#include <sys/types.h >
#include <stdlib.h>
#include <unistd.h>
int main(void)
{
        pid_t id;
        id = fork();
        if(id<0)
        {
                printf("fork error!\n");
                exit(1);
        }
        else if(id==0)
        {
                printf("I am the son of my father,my name is %d\n",getpid());
        }
        else
        {
                printf("I am the father,my name is %d\n",getpid());
        }
        exit(0);
}

论坛徽章:
0
2 [报告]
发表于 2013-08-07 20:34 |只看该作者
  1. #include <stdio.h>
  2. #include <linux/types.h>
  3. #include <stdlib.h>
  4. #include <unistd.h>
复制代码
我在Uuntu 12.04上修改后编译通过,好像Ubuntu的发行版把types.h文件放在/usr/include/linux/ 路径下了,其它的发行版我就不清楚了。

你应该在/usr/include/sys下找types.h文件,你代码报错,估计是找不到(不是在/usr/include/ 目录下找types.h这个文件),你再看一下。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP