blob: 02ac34fca25d23f42e96a887f199e0461c582afa [file] [log] [blame] [edit]
#include <GL/glut.h>
#include <stdio.h>
int main(void)
{
/* The following should call exit(1) and print
freeglut ERROR: Function <glutCreateWindow> called
without first calling 'glutInit'.
to stderr */
glutCreateWindow("gluttest");
}