diff options
author | 2003-06-25 22:41:35 +0000 | |
---|---|---|
committer | 2003-06-25 22:41:35 +0000 | |
commit | 6fa56084fd6d1a90901a2c8b556f97b2314c263d (patch) | |
tree | 68325bd8d436213c550e5c7a40a94c0f8d3e0320 | |
parent | bring in protos via headers (diff) | |
download | wireguard-openbsd-6fa56084fd6d1a90901a2c8b556f97b2314c263d.tar.xz wireguard-openbsd-6fa56084fd6d1a90901a2c8b556f97b2314c263d.zip |
put in a proto
-rw-r--r-- | usr.bin/chpass/chpass.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/chpass/chpass.h b/usr.bin/chpass/chpass.h index 1958713b667..59a55707255 100644 --- a/usr.bin/chpass/chpass.h +++ b/usr.bin/chpass/chpass.h @@ -1,4 +1,4 @@ -/* $OpenBSD: chpass.h,v 1.8 2003/06/03 02:56:06 millert Exp $ */ +/* $OpenBSD: chpass.h,v 1.9 2003/06/25 22:41:35 deraadt Exp $ */ /* $NetBSD: chpass.h,v 1.4 1996/05/15 21:50:44 jtc Exp $ */ /* @@ -36,7 +36,8 @@ struct passwd; typedef struct _entry { char *prompt; - int (*func)(), restricted, len; + int (*func)(char *, struct passwd *, struct _entry *); + int restricted, len; char *except, *save; } ENTRY; |