标题:【提问】請教一段程式問題
作者:mengyu
日期:2005-10-25 23:14
内容:
我自已寫了一段按鍵的程式
如當我按下按鍵後會鍵觸發system("ls");
其中有問題的程式如下:
void ButtonsGroup::button()
{
system("ls"); //compile for arm時這裡會有問題(error message:implicit declaration of
} function 'int system(...)')
但是我compile for x86的話是沒問題
但是呢我compiler for arm的話會出現以上的問題
這個問題該如果解決請各位高手幫忙一下
是library有問題嗎還是其他問題??
謝謝
#1 [tdns 10-28 09:33]
查一查system()这个函数的定义吧,有没有可能跟for arm的当前命名空间中的某个函数重名了?