Deleted Added
full compact
hesinfo.c (87284) hesinfo.c (92920)
1/* $NetBSD: hesinfo.c,v 1.1 1999/01/25 22:45:55 lukem Exp $ */
2
3/* Copyright 1988, 1996 by the Massachusetts Institute of Technology.
4 *
5 * Permission to use, copy, modify, and distribute this
6 * software and its documentation for any purpose and without
7 * fee is hereby granted, provided that the above copyright
8 * notice appear in all copies and that both that copyright

--- 7 unchanged lines hidden (view full) ---

16 */
17
18/* This file is a simple driver for the Hesiod library. */
19
20
21#include <sys/cdefs.h>
22#ifndef lint
23static const char rcsid[] =
1/* $NetBSD: hesinfo.c,v 1.1 1999/01/25 22:45:55 lukem Exp $ */
2
3/* Copyright 1988, 1996 by the Massachusetts Institute of Technology.
4 *
5 * Permission to use, copy, modify, and distribute this
6 * software and its documentation for any purpose and without
7 * fee is hereby granted, provided that the above copyright
8 * notice appear in all copies and that both that copyright

--- 7 unchanged lines hidden (view full) ---

16 */
17
18/* This file is a simple driver for the Hesiod library. */
19
20
21#include <sys/cdefs.h>
22#ifndef lint
23static const char rcsid[] =
24 "$FreeBSD: head/usr.bin/hesinfo/hesinfo.c 87284 2001-12-03 20:58:56Z dwmalone $";
24 "$FreeBSD: head/usr.bin/hesinfo/hesinfo.c 92920 2002-03-22 01:22:50Z imp $";
25#endif /* not lint */
26
27#include <err.h>
28#include <errno.h>
29#include <hesiod.h>
30#include <stdio.h>
31#include <stdlib.h>
32#include <string.h>
33#include <unistd.h>
34
25#endif /* not lint */
26
27#include <err.h>
28#include <errno.h>
29#include <hesiod.h>
30#include <stdio.h>
31#include <stdlib.h>
32#include <string.h>
33#include <unistd.h>
34
35int main __P((int, char **));
35int main(int, char **);
36extern char *__progname;
37
38int
39main(argc, argv)
40 int argc;
41 char **argv;
42{
43 char **list, **p, *bindname, *name, *type;

--- 73 unchanged lines hidden ---
36extern char *__progname;
37
38int
39main(argc, argv)
40 int argc;
41 char **argv;
42{
43 char **list, **p, *bindname, *name, *type;

--- 73 unchanged lines hidden ---