diff options
author | José Fonseca <[email protected]> | 2008-02-19 18:57:25 +0900 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-02-19 18:57:25 +0900 |
commit | 5480a6bc13a555f99a89fc801cfe153182697dda (patch) | |
tree | 60021b448477eaf564b52618e2c5913ade5638e6 /src/gallium/auxiliary/rtasm/rtasm_execmem.c | |
parent | b62f0ddd09f8ef9c400feca321412b3f0bc77e63 (diff) |
Fix windows build.
Diffstat (limited to 'src/gallium/auxiliary/rtasm/rtasm_execmem.c')
-rw-r--r-- | src/gallium/auxiliary/rtasm/rtasm_execmem.c | 3 |
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 9c78fa56269..300c1c2d9d7 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 ); } |