Fix windows build.

This commit is contained in:
José Fonseca
2008-02-19 18:57:25 +09:00
parent b62f0ddd09
commit 5480a6bc13
3 changed files with 4 additions and 3 deletions
+2 -1
View File
@@ -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 );
}
+1 -1
View File
@@ -21,7 +21,7 @@
*
**************************************************************************/
#if defined(__i386__) || defined(__386__)
#if defined(__i386__) || defined(__386__) || defined(i386)
#include "pipe/p_compiler.h"
#include "pipe/p_debug.h"
+1 -1
View File
@@ -24,7 +24,7 @@
#ifndef _RTASM_X86SSE_H_
#define _RTASM_X86SSE_H_
#if defined(__i386__) || defined(__386__)
#if defined(__i386__) || defined(__386__) || defined(i386)
/* It is up to the caller to ensure that instructions issued are
* suitable for the host cpu. There are no checks made in this module