diff options
author | Gustav Simonsson <[email protected]> | 2012-02-13 11:36:41 +0100 |
---|---|---|
committer | Gustav Simonsson <[email protected]> | 2012-02-13 11:36:41 +0100 |
commit | 871e450ebff145c06ae4fef0889f5310d0fb46b4 (patch) | |
tree | 9f55479825762b9aa5e61578b903711532f22b50 /lib/ssh/src/ssh_file.erl | |
parent | 86231a380b27fc262e48aa8c3f0372d4d2056682 (diff) | |
download | otp-871e450ebff145c06ae4fef0889f5310d0fb46b4.tar.gz otp-871e450ebff145c06ae4fef0889f5310d0fb46b4.tar.bz2 otp-871e450ebff145c06ae4fef0889f5310d0fb46b4.zip |
Add behaviour (api) module with callback specs
Function parameter and return type specifications
for the public key functions
Diffstat (limited to 'lib/ssh/src/ssh_file.erl')
-rw-r--r-- | lib/ssh/src/ssh_file.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ssh/src/ssh_file.erl b/lib/ssh/src/ssh_file.erl index 97ebf77e82..8569051bee 100644 --- a/lib/ssh/src/ssh_file.erl +++ b/lib/ssh/src/ssh_file.erl @@ -23,6 +23,8 @@ -module(ssh_file). +-behaviour(ssh_key_api). + -include_lib("public_key/include/public_key.hrl"). -include_lib("kernel/include/file.hrl"). |