summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/misc.h
diff options
context:
space:
mode:
authorDamien Miller <djm@cvs.openbsd.org>2019-09-03 08:29:59 +0000
committerDamien Miller <djm@cvs.openbsd.org>2019-09-03 08:29:59 +0000
commit25a797a094d0c5bcbdf936621c566402ba196748 (patch)
treef3b6cfc7570bf973d12fe352bbe665c0c6ef6a49 /usr.bin/ssh/misc.h
parentf5d9e7f57bb0e0d3b5a6109f87343498575907cf (diff)
move skip_space() to misc.c and make it public; ok markus@
Diffstat (limited to 'usr.bin/ssh/misc.h')
-rw-r--r--usr.bin/ssh/misc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/misc.h b/usr.bin/ssh/misc.h
index 5428124308f..16fd630f80b 100644
--- a/usr.bin/ssh/misc.h
+++ b/usr.bin/ssh/misc.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: misc.h,v 1.79 2019/01/23 21:50:56 dtucker Exp $ */
+/* $OpenBSD: misc.h,v 1.80 2019/09/03 08:29:58 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -44,6 +44,7 @@ struct ForwardOptions {
/* misc.c */
char *chop(char *);
+void skip_space(char **);
char *strdelim(char **);
char *strdelimw(char **);
int set_nonblock(int);