diff options
author | Ralf S. Engelschall <rse@openssl.org> | 2000-02-11 10:47:18 +0100 |
---|---|---|
committer | Ralf S. Engelschall <rse@openssl.org> | 2000-02-11 10:47:18 +0100 |
commit | 667ac4ec6a9afb23a07dc7c695dbc5be0f2c83cd (patch) | |
tree | ea0ebfbb8853bb97d6f361beb958a85eac8a7f22 /crypto/crypto.h | |
parent | 'passwd' tool. (diff) | |
download | openssl-667ac4ec6a9afb23a07dc7c695dbc5be0f2c83cd.tar.xz openssl-667ac4ec6a9afb23a07dc7c695dbc5be0f2c83cd.zip |
Make gcc 2.95.2 happy again, even under ``-Wall -Wshadow -Wpointer-arith -Wcast-align
-Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Winline''.
Diffstat (limited to 'crypto/crypto.h')
-rw-r--r-- | crypto/crypto.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/crypto.h b/crypto/crypto.h index f58ebc4a73..33a3c79d02 100644 --- a/crypto/crypto.h +++ b/crypto/crypto.h @@ -310,7 +310,7 @@ void *CRYPTO_realloc(void *addr,int num, const char *file, int line); void *CRYPTO_remalloc(void *addr,int num, const char *file, int line); void CRYPTO_set_mem_debug_options(long bits); -long CRYPTO_get_mem_debug_options(); +long CRYPTO_get_mem_debug_options(void); #define CRYPTO_push_info(info) \ CRYPTO_push_info_(info, __FILE__, __LINE__); @@ -336,7 +336,7 @@ void CRYPTO_dbg_free(void *addr,int before_p); * 3: 1 + 2 */ void CRYPTO_dbg_set_options(long bits); -long CRYPTO_dbg_get_options(); +long CRYPTO_dbg_get_options(void); #ifndef NO_FP_API void CRYPTO_mem_leaks_fp(FILE *); @@ -345,7 +345,7 @@ void CRYPTO_mem_leaks(struct bio_st *bio); /* unsigned long order, char *file, int line, int num_bytes, char *addr */ void CRYPTO_mem_leaks_cb(void (*cb)()); -void ERR_load_CRYPTO_strings(void ); +void ERR_load_CRYPTO_strings(void); /* BEGIN ERROR CODES */ /* The following lines are auto generated by the script mkerr.pl. Any changes |