summaryrefslogtreecommitdiff
path: root/misc.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-05-12 00:08:37 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-05-12 00:08:37 +0000
commitc93e84c2cecf2b968a069de595aff374abe89036 (patch)
treea2fd75f89b96705ccfd0cd8f85a9db5e582c2fca /misc.h
parentddb4f24056225322bc97eb366cbe5b2927fd7c89 (diff)
- markus@cvs.openbsd.org 2001/05/11 14:59:56
[clientloop.c misc.c misc.h] add unset_nonblock for stdout/err flushing in client_loop().
Diffstat (limited to 'misc.h')
-rw-r--r--misc.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/misc.h b/misc.h
index b30fe4884..01a736c03 100644
--- a/misc.h
+++ b/misc.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: misc.h,v 1.6 2001/05/08 19:45:24 mouring Exp $ */ 1/* $OpenBSD: misc.h,v 1.7 2001/05/11 14:59:56 markus Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -17,8 +17,9 @@ char *chop(char *s);
17/* return next token in configuration line */ 17/* return next token in configuration line */
18char *strdelim(char **s); 18char *strdelim(char **s);
19 19
20/* set filedescriptor to non-blocking */ 20/* set/unset filedescriptor to non-blocking */
21void set_nonblock(int fd); 21void set_nonblock(int fd);
22void unset_nonblock(int fd);
22 23
23struct passwd * pwcopy(struct passwd *pw); 24struct passwd * pwcopy(struct passwd *pw);
24 25