From: John Kohl Date: Mon, 5 Feb 1990 14:39:52 +0000 (+0000) Subject: remove formal param names X-Git-Tag: krb5-1.0-alpha2~1111 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c4158035b4218380690f5932139cb267bf679e00;p=krb5.git 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 --- 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__ */