error C2381: “exit” : 重定义
Posted Tomorrow
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了error C2381: “exit” : 重定义相关的知识,希望对你有一定的参考价值。
编译OpenGL Red Book 的例子时出现错误,
stdlib.h(406) : error C2381: “exit”: 重定义;__declspec(noreturn) 不同
glut.h(146) : 参见“exit”的声明
解决方法:#include <GL/glut.h>
#include <stdlib.h>
改成:
#include <stdlib.h>
#include <GL/glut.h>
通过。
OpenGL和C++有不太融合的地方,在include时要让标准C++类库的头文件位于GLUT图形库头文件之前。
以上是关于error C2381: “exit” : 重定义的主要内容,如果未能解决你的问题,请参考以下文章
多重定义错误(collect2: error: ld returned 1 exit status)