diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-07-02 21:04:11 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-07-02 21:04:11 +0000 |
commit | c7d032fc4ac7d7924b20e1fea418272346d8c78c (patch) | |
tree | fd85b5bf62e92ffd1fee5c23d0b97910c3a67fb7 /usr.bin/ypcat | |
parent | 27d9189e4074c4648710da3447660f62aaf79e4c (diff) |
protos
Diffstat (limited to 'usr.bin/ypcat')
-rw-r--r-- | usr.bin/ypcat/ypcat.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.bin/ypcat/ypcat.c b/usr.bin/ypcat/ypcat.c index 32aa4eacc12..80294f8248d 100644 --- a/usr.bin/ypcat/ypcat.c +++ b/usr.bin/ypcat/ypcat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ypcat.c,v 1.9 2003/06/02 04:00:16 deraadt Exp $ */ +/* $OpenBSD: ypcat.c,v 1.10 2003/07/02 21:04:10 deraadt Exp $ */ /* * Copyright (c) 1992, 1993, 1996 Theo de Raadt <deraadt@theos.com> @@ -27,7 +27,7 @@ */ #ifndef LINT -static char rcsid[] = "$OpenBSD: ypcat.c,v 1.9 2003/06/02 04:00:16 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: ypcat.c,v 1.10 2003/07/02 21:04:10 deraadt Exp $"; #endif #include <sys/param.h> @@ -43,6 +43,9 @@ static char rcsid[] = "$OpenBSD: ypcat.c,v 1.9 2003/06/02 04:00:16 deraadt Exp $ #include <rpcsvc/yp.h> #include <rpcsvc/ypclnt.h> +void usage(void); +int printit(u_long, char *, int, char *, int, void *); + struct ypalias { char *alias, *name; } ypaliases[] = { |