diff options
author | Brian <[email protected]> | 2007-07-21 11:27:22 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-07-21 11:27:22 -0600 |
commit | 005eea249c2565cd33bb7c5f599040ead1ef99a5 (patch) | |
tree | 2f3124d5d6070be0c2ed6368d58681d9ca5269f4 /src/mesa/main/imports.h | |
parent | 9747de8ec68aa364a2009ea2bfbaeb48d73a758f (diff) |
Fix a number of MINGW32 issues (Zhang <[email protected]>)mesa_7_0_1_rc1
Diffstat (limited to 'src/mesa/main/imports.h')
-rw-r--r-- | src/mesa/main/imports.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index 9be8014a131..ebdfc452a7a 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -700,7 +700,11 @@ extern int _mesa_ffs(int i); extern int +#ifdef __MINGW32__ +_mesa_ffsll(long i); +#else _mesa_ffsll(long long i); +#endif extern unsigned int _mesa_bitcount(unsigned int n); |