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");
}