  
- 积分
- 32889
- 威望
- 1069
- 金钱
- 0
- 阅读权限
- 110
- 性别
- 男
- 在线时间
- 6028 小时
|
有些头文件你没#include吧?我把下面这个文件放到bison/src里:
fputs.c
-----------------
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <ctype.h>
#include "config.h"
#include "system.h"
#include "argmatch.h"
#include <error.h>
#include "complain.h"
#include "files.h"
#include "getargs.h"
#include "uniqstr.h"
int main(int argc, char** argv)
{
fprintf(stderr,_("%s\n"),"test");
return 0;
}
-----
把它要的文件统统拷到src里来,然后
gcc fputs
没啥问题。 |
|