* eet: use uintptr_t.

SVN revision: 55210
This commit is contained in:
Cedric BAIL 2010-12-03 18:01:45 +00:00
parent d5d953a533
commit fc3cd8f248
1 changed files with 3 additions and 2 deletions

View File

@ -366,10 +366,11 @@ AC_C___ATTRIBUTE__
AC_TRY_RUN(
[
#include <stdlib.h>
#include <inttypes.h>
int main (int argc, char **argv) {
void *foo = NULL;
long long bar = (long long)foo;
return (long long)foo;
uintptr_t bar = (uintptr_t)foo;
return (uintptr_t)foo;
}
],
[have_null="yes"],