diff options
author | José Fonseca <[email protected]> | 2008-06-24 14:18:07 +0900 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-06-24 14:18:07 +0900 |
commit | a148025d94505bca08f9baa1689048032bb60e2c (patch) | |
tree | d5fe20f005a3715327909acd3266cbaedd9c0537 /src/mesa/main/imports.h | |
parent | b6f053739f66c1c88db12df4690051c0a54ff0f7 (diff) |
mesa: Use standard integer types.
Especially get rid of the non-portable long long.
Diffstat (limited to 'src/mesa/main/imports.h')
-rw-r--r-- | src/mesa/main/imports.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index 813be52e4e0..d91a1366b07 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -697,14 +697,10 @@ extern double _mesa_pow(double x, double y); extern int -_mesa_ffs(int i); +_mesa_ffs(int32_t i); extern int -#ifdef __MINGW32__ -_mesa_ffsll(long i); -#else -_mesa_ffsll(long long i); -#endif +_mesa_ffsll(int64_t i); extern unsigned int _mesa_bitcount(unsigned int n); |