mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
10 lines
167 B
C
10 lines
167 B
C
|
#define GLFW_INCLUDE_GLU
|
||
|
#include <GLFW/glfw3.h>
|
||
|
#include <stdlib.h>
|
||
|
int main()
|
||
|
{
|
||
|
if (!glfwInit())
|
||
|
exit(EXIT_FAILURE);
|
||
|
glfwTerminate();
|
||
|
return 0;
|
||
|
}
|