|
|
是否少include了什么文件?
记得以前用过<curses.h> 但现在没书在身边
#include <stdio.h>
#include <curses.h>
int main()
{
clear(); //清屏
return 0;
}
[HoHo@MIIX Desktop]$ gcc -o test test.c
/tmp/cciUrkJh.o: In function `main':test.c .text+0x12):对‘stdscr’未定义的引用
:test.c .text+0x1a):对‘wclear’未定义的引用
collect2: ld 返回 1 |
|