xref: /original-bsd/usr.bin/chpass/chpass.h (revision bff54947)
1 /*
2  * Copyright (c) 1988 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)chpass.h	5.2 (Berkeley) 06/01/90
8  */
9 
10 struct entry {
11 	char *prompt;
12 	int (*func)(), restricted, len;
13 	char *except, *save;
14 };
15 
16 extern uid_t uid;
17