diff options
author | Jeffrey Walton <noloader@gmail.com> | 2016-06-08 21:10:50 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-06-08 21:18:04 +0200 |
commit | 2a7de0fd5d9baf946ef4d2c51096b04dd47a8143 (patch) | |
tree | 72bc90447027945e17151a0ae8809b7ce4fe1b5b /crypto/async | |
parent | Add some accessor API's (diff) | |
download | openssl-2a7de0fd5d9baf946ef4d2c51096b04dd47a8143.tar.xz openssl-2a7de0fd5d9baf946ef4d2c51096b04dd47a8143.zip |
Fixes to get -ansi working
Various fixes to get the following to compile:
./config no-asm -ansi -D_DEFAULT_SOURCE
RT4479
RT4480
Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'crypto/async')
-rw-r--r-- | crypto/async/arch/async_posix.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/async/arch/async_posix.h b/crypto/async/arch/async_posix.h index 0d9245ebe9..3c61f7f7b0 100644 --- a/crypto/async/arch/async_posix.h +++ b/crypto/async/arch/async_posix.h @@ -34,7 +34,7 @@ typedef struct async_fibre_st { int env_init; } async_fibre; -static inline int async_fibre_swapcontext(async_fibre *o, async_fibre *n, int r) +static ossl_inline int async_fibre_swapcontext(async_fibre *o, async_fibre *n, int r) { o->env_init = 1; |