summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNarayan Kamath <narayan@google.com>2014-03-07 16:04:45 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-03-07 16:04:46 +0000
commit20ca0a0aa4bab60ae6868ed2f45482153812bc61 (patch)
tree621b0273cda4d986f91ebbf721537893c83a21be
parentfd8f330f75e568714b1cad50c76e47bcc6a833c8 (diff)
parenta0286dbec2d87857f016ba3970a01618a5d1cb88 (diff)
downloadandroid_external_flac-20ca0a0aa4bab60ae6868ed2f45482153812bc61.tar.gz
android_external_flac-20ca0a0aa4bab60ae6868ed2f45482153812bc61.tar.bz2
android_external_flac-20ca0a0aa4bab60ae6868ed2f45482153812bc61.zip
Merge "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