diff options
author | Brian Paul <[email protected]> | 1999-10-10 12:51:29 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 1999-10-10 12:51:29 +0000 |
commit | 60a249d009acec34bd61e12f01caf7bdf87e895c (patch) | |
tree | 004e343be3579ba143ef172130047e60e1cfbbe2 /src/mesa/main/enums.c | |
parent | 375853e86734ea5735aa64af3a7aa0129bc551d5 (diff) |
now using GL_MALLOC, GL_FREE
Diffstat (limited to 'src/mesa/main/enums.c')
-rw-r--r-- | src/mesa/main/enums.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/main/enums.c b/src/mesa/main/enums.c index 69b520ef403..ab94f506152 100644 --- a/src/mesa/main/enums.c +++ b/src/mesa/main/enums.c @@ -1,4 +1,4 @@ -/* $Id: enums.c,v 1.1 1999/08/19 00:55:41 jtg Exp $ */ +/* $Id: enums.c,v 1.2 1999/10/10 12:51:29 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -27,6 +27,7 @@ #include "GL/gl.h" #include "enums.h" +#include "macros.h" #include <stdlib.h> #include <string.h> @@ -824,7 +825,7 @@ static int compar_nr( const enum_elt **a, const enum_elt **b ) static void sort_enums( void ) { int i; - index1 = (enum_elt **)malloc( Elements(all_enums) * sizeof(enum_elt *) ); + index1 = (enum_elt **)GL_ALLOC( Elements(all_enums) * sizeof(enum_elt *) ); sorted = 1; qsort( all_enums, Elements(all_enums), sizeof(*all_enums), |