Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
6cca475bbf7cf8f3b03db3baaa772aa5b72e94de
/
.
/
Tests
/
FindGLUT
/
Test
/
main.c
blob: 1c8569c1290c45b915a4c875bb0ca551f78ff0be [
file
] [
log
] [
blame
]
#include
<GL/glut.h>
#include
<stdio.h>
int
main
()
{
/* The following should call exit(1) and print
freeglut ERROR: Function <glutCreateWindow> called
without first calling 'glutInit'.
to stderr */
glutCreateWindow
(
"gluttest"
);
}