summaryrefslogtreecommitdiff
path: root/misc.h
diff options
context:
space:
mode:
Diffstat (limited to 'misc.h')
-rw-r--r--misc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/misc.h b/misc.h
index ffa8d8f27..ec47a611d 100644
--- a/misc.h
+++ b/misc.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: misc.h,v 1.16 2004/06/17 15:10:14 djm Exp $ */ 1/* $OpenBSD: misc.h,v 1.17 2004/08/11 21:43:05 avsm Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -29,8 +29,8 @@ struct passwd *pwcopy(struct passwd *);
29typedef struct arglist arglist; 29typedef struct arglist arglist;
30struct arglist { 30struct arglist {
31 char **list; 31 char **list;
32 int num; 32 u_int num;
33 int nalloc; 33 u_int nalloc;
34}; 34};
35void addargs(arglist *, char *, ...) __attribute__((format(printf, 2, 3))); 35void addargs(arglist *, char *, ...) __attribute__((format(printf, 2, 3)));
36 36