summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/rtasm/rtasm_execmem.c
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@tungstengraphics.com>2008-02-19 18:57:25 +0900
committerJosé Fonseca <jrfonseca@tungstengraphics.com>2008-02-19 18:57:25 +0900
commit5480a6bc13a555f99a89fc801cfe153182697dda (patch)
tree60021b448477eaf564b52618e2c5913ade5638e6 /src/gallium/auxiliary/rtasm/rtasm_execmem.c
parentb62f0ddd09f8ef9c400feca321412b3f0bc77e63 (diff)
Fix windows build.
Diffstat (limited to 'src/gallium/auxiliary/rtasm/rtasm_execmem.c')
-rw-r--r--src/gallium/auxiliary/rtasm/rtasm_execmem.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/rtasm/rtasm_execmem.c b/src/gallium/auxiliary/rtasm/rtasm_execmem.c
index 9c78fa5626..300c1c2d9d 100644
--- a/src/gallium/auxiliary/rtasm/rtasm_execmem.c
+++ b/src/gallium/auxiliary/rtasm/rtasm_execmem.c
@@ -33,6 +33,7 @@
#include "pipe/p_compiler.h"
#include "pipe/p_debug.h"
#include "pipe/p_thread.h"
+#include "pipe/p_util.h"
#include "rtasm_execmem.h"
@@ -118,7 +119,7 @@ rtasm_exec_free(void *addr)
*/
void *
-rtasm_exec_malloc(GLuint size)
+rtasm_exec_malloc(size_t size)
{
return MALLOC( size );
}