aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2015-03-30 16:47:57 +0200
committerAndy Polyakov <appro@openssl.org>2015-04-02 09:36:32 +0200
commit449e3f2601246e533a05ccf227375c1e15db2b55 (patch)
treeb126c6965f119cbcef4b6a4daef9e8d398b7531a /include
parent11305038e904cdebd1c8882f6f508fe0dd14e349 (diff)
downloadopenssl-449e3f2601246e533a05ccf227375c1e15db2b55.tar.gz
Configure: android-arm facelift.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'include')
-rw-r--r--include/openssl/rand.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/openssl/rand.h b/include/openssl/rand.h
index 14b479343a..0086c075da 100644
--- a/include/openssl/rand.h
+++ b/include/openssl/rand.h
@@ -99,6 +99,9 @@ int RAND_bytes(unsigned char *buf, int num);
DECLARE_DEPRECATED(int RAND_pseudo_bytes(unsigned char *buf, int num));
#endif
void RAND_seed(const void *buf, int num);
+#if defined(__ANDROID__) && defined(__NDK_FPABI__)
+__NDK_FPABI__ /* __attribute__((pcs("aapcs"))) on ARM */
+#endif
void RAND_add(const void *buf, int num, double entropy);
int RAND_load_file(const char *file, long max_bytes);
int RAND_write_file(const char *file);