summaryrefslogtreecommitdiff
path: root/misc.h
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2019-09-03 08:29:58 +0000
committerDamien Miller <djm@mindrot.org>2019-09-03 18:39:31 +1000
commitc72d78ccbe642e08591a626e5de18381489716e0 (patch)
tree3c79965dde29c4b04cf0d871d068b54b2c2a084d /misc.h
parent06af3583f46e2c327fdd44d8a95b8b4e8dfd8db5 (diff)
upstream: move skip_space() to misc.c and make it public; ok
markus@ OpenBSD-Commit-ID: caa77e8a3b210948e29ad3e28c5db00852961eae
Diffstat (limited to 'misc.h')
-rw-r--r--misc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/misc.h b/misc.h
index 5b4325aba..8deea5ea6 100644
--- a/misc.h
+++ b/misc.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: misc.h,v 1.79 2019/01/23 21:50:56 dtucker Exp $ */ 1/* $OpenBSD: misc.h,v 1.80 2019/09/03 08:29:58 djm Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -44,6 +44,7 @@ struct ForwardOptions {
44/* misc.c */ 44/* misc.c */
45 45
46char *chop(char *); 46char *chop(char *);
47void skip_space(char **);
47char *strdelim(char **); 48char *strdelim(char **);
48char *strdelimw(char **); 49char *strdelimw(char **);
49int set_nonblock(int); 50int set_nonblock(int);