error: 'FALSE' undeclared (first use in this function)
在gcc中編譯出現錯誤提示:error: 'FALSE' undeclared (first use in this function)
解決方法:
#ifndef FALSE #define FALSE (0) #endif #ifndef TRUE #define TRUE (!FALSE) #endif
最後更新:2017-04-02 06:52:03
在gcc中編譯出現錯誤提示:error: 'FALSE' undeclared (first use in this function)
解決方法:
#ifndef FALSE #define FALSE (0) #endif #ifndef TRUE #define TRUE (!FALSE) #endif
最後更新:2017-04-02 06:52:03