- 论坛徽章:
- 0
|
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);
}
|
|