我有这个c程序:
#include <sys/types.h>
#include "ourhdr.h"
int glob = 6; /* external variable in initialized data */
char buf[] = "a write to stdout\n";
int
main(void)
{
int var; /* automatic variable on the stack */
pid_t pid;
var = 88;
if (write(STDOUT_FILENO, buf, sizeof(buf)-1) != sizeof(buf)-1)
err_sys("write error");
printf("before fork\n"); /* we don't flush stdout */
if ( (pid = fork()) < 0)
err_sys("fork error");
else if (pid == 0) { /* child */
glob++; /* modify variables */
var++;
} else
sleep(2); /* parent */
printf("pid = %d, glob = %d, var = %d\n", getpid(), glob, var);
exit(0);
}
在头文件“ourhdr.h”(位于同一文件夹中)中,我定义了几个函数,例如 err_sys()。使用 gcc 编译时出现此错误:
In function "main":
undefined reference to "err_sys"
我怎样才能让这个工作?如果需要,我可以在此处发布头文件。谢谢你。
** 编辑:** 这是ourhdr.h 文件:http ://pastebin.com/fMUiG4zU