summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCedric BAIL <cedric.bail@free.fr>2010-12-03 18:01:45 +0000
committerCedric BAIL <cedric.bail@free.fr>2010-12-03 18:01:45 +0000
commitacee01a194db501b72782602b600fb6f9a7476e3 (patch)
treea016040b563233cfaa3603a11bfe0c6e0f943bbf
parent7543f0e80a104955bb60d4c9586c9b030899e96d (diff)
downloadeet-acee01a194db501b72782602b600fb6f9a7476e3.tar.gz
* eet: use uintptr_t.
SVN revision: 55210
-rw-r--r--configure.ac5
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index c96be0b..6e6e428 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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"],