标签: c linux exit
在我的应用程序中读取/写入文件时,如果文件未正确关闭,我想退出(1)。在Windows上它运行良好,但在Linux上出现此错误:
‘exit’ was not declared in this scope
我该如何解决?
感谢。
答案 0 :(得分:13)
如果是在C中,您是#include <stdlib.h>吗?
#include <stdlib.h>
答案 1 :(得分:6)
如果这是C ++,则必须包含cstdlib:
#include <cstdlib>