summaryrefslogtreecommitdiff
path: root/misc.h
diff options
context:
space:
mode:
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