diff options
Diffstat (limited to 'src/blowfish.h')
-rw-r--r-- | src/blowfish.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/blowfish.h b/src/blowfish.h index d4d8f36429..747f469349 100644 --- a/src/blowfish.h +++ b/src/blowfish.h @@ -1,13 +1,13 @@ #ifndef NEOVIM_BLOWFISH_H #define NEOVIM_BLOWFISH_H /* blowfish.c */ -void bf_key_init __ARGS((char_u *password, char_u *salt, int salt_len)); -void bf_ofb_init __ARGS((char_u *iv, int iv_len)); -void bf_crypt_encode __ARGS((char_u *from, size_t len, char_u *to)); -void bf_crypt_decode __ARGS((char_u *ptr, long len)); -void bf_crypt_init_keys __ARGS((char_u *passwd)); -void bf_crypt_save __ARGS((void)); -void bf_crypt_restore __ARGS((void)); -int blowfish_self_test __ARGS((void)); +void bf_key_init(char_u *password, char_u *salt, int salt_len); +void bf_ofb_init(char_u *iv, int iv_len); +void bf_crypt_encode(char_u *from, size_t len, char_u *to); +void bf_crypt_decode(char_u *ptr, long len); +void bf_crypt_init_keys(char_u *passwd); +void bf_crypt_save(void); +void bf_crypt_restore(void); +int blowfish_self_test(void); /* vim: set ft=c : */ #endif /* NEOVIM_BLOWFISH_H */ |