=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/misc.h,v retrieving revision 1.17.2.1 retrieving revision 1.17.2.2 diff -u -r1.17.2.1 -r1.17.2.2 --- src/usr.bin/ssh/misc.h 2005/03/10 16:28:27 1.17.2.1 +++ src/usr.bin/ssh/misc.h 2005/09/02 03:45:00 1.17.2.2 @@ -1,4 +1,4 @@ -/* $OpenBSD: misc.h,v 1.17.2.1 2005/03/10 16:28:27 brad Exp $ */ +/* $OpenBSD: misc.h,v 1.17.2.2 2005/09/02 03:45:00 brad Exp $ */ /* * Author: Tatu Ylonen @@ -24,6 +24,9 @@ char *cleanhostname(char *); char *colon(char *); long convtime(const char *); +char *tilde_expand_filename(const char *, uid_t); +char *percent_expand(const char *, ...) __attribute__((__sentinel__)); +char *tohex(const u_char *, u_int); struct passwd *pwcopy(struct passwd *); @@ -34,10 +37,6 @@ u_int nalloc; }; void addargs(arglist *, char *, ...) __attribute__((format(printf, 2, 3))); - -/* tildexpand.c */ - -char *tilde_expand_filename(const char *, uid_t); /* readpass.c */