我 最近安裝了debian 3.0 版本(stable/woody).
但是 想測 gcc時, 寫了個hello.c 的程式 as follow:
#include <stdio.h>
main()
{
printf("hello!\n");
}
但是compile時發生stdio.h: no such file or directory.
我想應該是 沒有再path內, 但以root搜尋(find / -name stdio.h -print)時發現並沒有 stdio.h . (gcc 版本為2.95)
因為 後來 即使 把sources.list 裡的 stable改為testing 更新 glibc 及 gcc(到3.3) 但是 依然沒有 stdio.h 的蹤影.
請問 是怎麼一回事呢?