diff options
| author | John Kohl <jtkohl@mit.edu> | 1990-02-05 14:39:52 +0000 |
|---|---|---|
| committer | John Kohl <jtkohl@mit.edu> | 1990-02-05 14:39:52 +0000 |
| commit | c4158035b4218380690f5932139cb267bf679e00 (patch) | |
| tree | 1ef74d348dd40df0727e82b6a922471ac7cd0c96 /src/include | |
| parent | 2fcabfbada29b18afd6d34addaca6622cbf1cd17 (diff) | |
| download | krb5-c4158035b4218380690f5932139cb267bf679e00.tar.gz krb5-c4158035b4218380690f5932139cb267bf679e00.tar.xz krb5-c4158035b4218380690f5932139cb267bf679e00.zip | |
remove formal param names
change proto for read_password() to fill in the passwd length
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@273 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/krb5/los-proto.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/include/krb5/los-proto.h b/src/include/krb5/los-proto.h index d12e5157b..1ab2a9595 100644 --- a/src/include/krb5/los-proto.h +++ b/src/include/krb5/los-proto.h @@ -20,33 +20,33 @@ /* libos.spec */ krb5_error_code krb5_read_password - PROTOTYPE((char *prompt, - char *prompt2, - char *return_pwd, - int size_return )); + PROTOTYPE((char *, + char *, + char *, + int * )); krb5_error_code krb5_lock_file - PROTOTYPE((FILE *filep, + PROTOTYPE((FILE *, char *, - int mode )); + int )); krb5_error_code krb5_unlock_file - PROTOTYPE((FILE *filep, + PROTOTYPE((FILE *, char * )); krb5_error_code krb5_timeofday - PROTOTYPE((krb5_int32 *timeret )); + PROTOTYPE((krb5_int32 * )); krb5_error_code krb5_ms_timeofday - PROTOTYPE((krb5_int32 *seconds, - krb5_int16 *milliseconds )); + PROTOTYPE((krb5_int32 *, + krb5_int16 * )); int krb5_net_read - PROTOTYPE((int fd, - char *buf, - int len )); + PROTOTYPE((int , + char *, + int )); int krb5_net_write - PROTOTYPE((int fd, - char *buf, - int len )); + PROTOTYPE((int , + char *, + int )); /* get all the addresses of this host */ krb5_error_code krb5_os_localaddr - PROTOTYPE((krb5_address ***addr)); + PROTOTYPE((krb5_address ***)); #endif /* __KRB5_LIBOS_PROTO__ */ |
