09/03/31 16:05:00 SOoe+K0p
>>52
> [root@centos fastforward-0.51]# vi error.h ← error.h編集
> extern int errno;
> ↓
> #include<errno.h> ← 変更
extern int errno;
の部分を消して
#include<errno.h>
にするってことですよね?
現状では
[root@KIDS-MAIL qmail]# more error.h
#ifndef ERROR_H
#define ERROR_H
#include <error.h>
extern int error_intr;
:
:
こんな感じになってます。