From 4b13d7a7562f543927f1335e9a0a5f739078f16a Mon Sep 17 00:00:00 2001 From: pascal Date: Mon, 30 Apr 2012 20:58:39 +0000 Subject: [PATCH] Fix a prototype in order to be able to use this header with -Werror=strict-prototypes enabled. ok matthieu@ --- dist/Mesa/include/GL/glu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/Mesa/include/GL/glu.h b/dist/Mesa/include/GL/glu.h index cd967ac5e..ba2228d8d 100644 --- a/dist/Mesa/include/GL/glu.h +++ b/dist/Mesa/include/GL/glu.h @@ -284,7 +284,7 @@ typedef GLUtesselator GLUtriangulatorObj; #define GLU_TESS_MAX_COORD 1.0e150 /* Internal convenience typedefs */ -typedef void (GLAPIENTRYP _GLUfuncptr)(); +typedef void (GLAPIENTRYP _GLUfuncptr)(void); GLAPI void GLAPIENTRY gluBeginCurve (GLUnurbs* nurb); GLAPI void GLAPIENTRY gluBeginPolygon (GLUtesselator* tess);