summaryrefslogtreecommitdiff
path: root/misc.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-03-05 05:56:40 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-03-05 05:56:40 +0000
commit086cf214cf70cbb1658a9e966f84e7c12214554c (patch)
treef71acc5803d24430ed87ddf4fc53f31dd9369e37 /misc.h
parentebd888d91996b8328009f985d1b69d9f698e3607 (diff)
- markus@cvs.openbsd.org 2001/02/22 21:59:44
[auth.c auth.h auth1.c auth2.c misc.c misc.h ssh.c] use pwcopy in ssh.c, too
Diffstat (limited to 'misc.h')
-rw-r--r--misc.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/misc.h b/misc.h
index 1dd038960..3204b626a 100644
--- a/misc.h
+++ b/misc.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: misc.h,v 1.2 2001/01/29 01:58:17 niklas Exp $ */ 1/* $OpenBSD: misc.h,v 1.3 2001/02/22 21:59:44 markus Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -20,6 +20,8 @@ char *strdelim(char **s);
20/* set filedescriptor to non-blocking */ 20/* set filedescriptor to non-blocking */
21void set_nonblock(int fd); 21void set_nonblock(int fd);
22 22
23struct passwd * pwcopy(struct passwd *pw);
24
23/* wrapper for signal interface */ 25/* wrapper for signal interface */
24typedef void (*mysig_t)(int); 26typedef void (*mysig_t)(int);
25mysig_t mysignal(int sig, mysig_t act); 27mysig_t mysignal(int sig, mysig_t act);