=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/misc.h,v retrieving revision 1.21 retrieving revision 1.21.2.1 diff -u -r1.21 -r1.21.2.1 --- src/usr.bin/ssh/misc.h 2005/03/01 10:09:52 1.21 +++ src/usr.bin/ssh/misc.h 2005/09/04 18:40:02 1.21.2.1 @@ -1,4 +1,4 @@ -/* $OpenBSD: misc.h,v 1.21 2005/03/01 10:09:52 djm Exp $ */ +/* $OpenBSD: misc.h,v 1.21.2.1 2005/09/04 18:40:02 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 */