summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNarayan Kamath <narayan@google.com>2014-03-07 16:11:20 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-03-07 16:11:20 +0000
commit707ccf9529f34c74896e4c59fa345f7d73b9cb9e (patch)
tree621b0273cda4d986f91ebbf721537893c83a21be
parent068926919b76b051635b711555429c6df0faeaa9 (diff)
parent20ca0a0aa4bab60ae6868ed2f45482153812bc61 (diff)
downloadandroid_external_flac-707ccf9529f34c74896e4c59fa345f7d73b9cb9e.tar.gz
android_external_flac-707ccf9529f34c74896e4c59fa345f7d73b9cb9e.tar.bz2
android_external_flac-707ccf9529f34c74896e4c59fa345f7d73b9cb9e.zip
am 20ca0a0a: Merge "config: set sizeof void pointer for LP64"
* commit '20ca0a0aa4bab60ae6868ed2f45482153812bc61': config: set sizeof void pointer for LP64
-rw-r--r--config.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/config.h b/config.h
index 6827125..b82014c 100644
--- a/config.h
+++ b/config.h
@@ -113,7 +113,11 @@
#define PACKAGE_VERSION ""
/* The size of a `void*', as computed by sizeof. */
+#if __LP64__
+#define SIZEOF_VOIDP 8
+#else
#define SIZEOF_VOIDP 4
+#endif
/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1