diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-10-27 18:16:37 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-10-27 18:16:37 +0000 |
commit | ce5709184bef665a545bcbf207598ad0f991a67b (patch) | |
tree | 58bf49cd59a7d236e2146ef3a86327929ca637fb /src/common/aes.h | |
parent | 6874c3990426ca4efd4e88796854f2bab60df54d (diff) | |
download | tor-ce5709184bef665a545bcbf207598ad0f991a67b.tar.gz tor-ce5709184bef665a545bcbf207598ad0f991a67b.zip |
Pass with -Wstrict-prototypes
svn:r2614
Diffstat (limited to 'src/common/aes.h')
-rw-r--r-- | src/common/aes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/aes.h b/src/common/aes.h index 3c63a0e4f2..085ea55932 100644 --- a/src/common/aes.h +++ b/src/common/aes.h @@ -17,7 +17,7 @@ struct aes_cnt_cipher; typedef struct aes_cnt_cipher aes_cnt_cipher_t; -aes_cnt_cipher_t* aes_new_cipher(); +aes_cnt_cipher_t* aes_new_cipher(void); void aes_free_cipher(aes_cnt_cipher_t *cipher); void aes_set_key(aes_cnt_cipher_t *cipher, const unsigned char *key, int key_bits); void aes_crypt(aes_cnt_cipher_t *cipher, const char *input, int len, char *output); |