17 lines
217 B
C
17 lines
217 B
C
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#ifdef WIN32
|
|
#include <windows.h>
|
|
#else
|
|
#include <unistd.h>
|
|
#endif
|
|
#include <math.h>
|
|
|
|
#ifndef PU_NOT_USING_GLUT
|
|
#include <GL/glut.h>
|
|
#endif
|
|
#include "pu.h"
|
|
|