Remove CVS keywords.
[mesa.git] / src / glu / mini / all.h
1
2 /*
3 * Mesa 3-D graphics library
4 * Version: 3.3
5 * Copyright (C) 1995-2000 Brian Paul
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details.
16 *
17 * You should have received a copy of the GNU Library General Public
18 * License along with this library; if not, write to the Free
19 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22
23 /*
24 * This file includes all .h files needed for the GLU source code for
25 * the purpose of precompiled headers.
26 *
27 * If the preprocessor symbol PCH is defined at compile time then each
28 * of the .c files will #include "all.h" only, instead of a bunch of
29 * individual .h files.
30 */
31
32
33 #ifndef GLU_ALL_H
34 #define GLU_ALL_H
35
36
37 #ifndef PC_HEADER
38 This is an error. all.h should be included only if PCH is defined.
39 #endif
40
41
42 #include <assert.h>
43 #include <math.h>
44 #include <stdio.h>
45 #include <stdlib.h>
46 #include <string.h>
47 #include "GL/gl.h"
48 #include "GL/glu.h"
49 #include "gluP.h"
50 #include "nurbs.h"
51 #include "tess.h"
52
53
54 #endif /*GLU_ALL_H */