#error
编译到此处时,会保存,导致中断编译
#error can not come here int main() { return 0; }
$ gcc test.c
test.c:5:2: error: #error can not come here #error can not come here
参考文档:
https://github.com/kokke/tiny-AES-c
本文共 249 字,大约阅读时间需要 1 分钟。
#error
编译到此处时,会保存,导致中断编译
#error can not come here int main() { return 0; }
$ gcc test.c
test.c:5:2: error: #error can not come here #error can not come here
参考文档:
https://github.com/kokke/tiny-AES-c
转载于:https://www.cnblogs.com/rivsidn/p/9337303.html