summaryrefslogtreecommitdiffstats
path: root/misc.h
diff options
context:
space:
mode:
authorKevin Steves <stevesk@pobox.com>2001-07-04 17:25:54 +0000
committerKevin Steves <stevesk@pobox.com>2001-07-04 17:25:54 +0000
commitd009ae3d04b7ea4e5385e2ca98394d8ddfefda93 (patch)
tree4e16f70a691750f235125b759d5f11e68c1dfc7b /misc.h
parentf70b59c0393722baf3af24bedff7ba03553b7924 (diff)
- (stevesk) sync misc.h
Diffstat (limited to 'misc.h')
-rw-r--r--misc.h21
1 files changed, 11 insertions, 10 deletions
diff --git a/misc.h b/misc.h
index 5f0b0aa4..fc564527 100644
--- a/misc.h
+++ b/misc.h
@@ -12,14 +12,16 @@
* called by a name other than "ssh" or "Secure Shell".
*/
-char *chop(char *);
-char *strdelim(char **);
-void set_nonblock(int);
-void unset_nonblock(int);
-int a2port(const char *);
-char *cleanhostname(char *);
-char *colon(char *);
-long convtime(const char *);
+char *chop(char *);
+char *strdelim(char **);
+void set_nonblock(int);
+void unset_nonblock(int);
+int a2port(const char *);
+char *cleanhostname(char *);
+char *colon(char *);
+long convtime(const char *);
+
+struct passwd *pwcopy(struct passwd *);
typedef struct arglist arglist;
struct arglist {
@@ -27,8 +29,7 @@ struct arglist {
int num;
int nalloc;
};
-
-void addargs(arglist *, char *, ...) __attribute__((format(printf, 2, 3)));
+void addargs(arglist *, char *, ...) __attribute__((format(printf, 2, 3)));
/* wrapper for signal interface */
typedef void (*mysig_t)(int);