Deleted Added
full compact
amq.c (96236) amq.c (119682)
1/*
1/*
2 * Copyright (c) 1997-2001 Erez Zadok
2 * Copyright (c) 1997-2003 Erez Zadok
3 * Copyright (c) 1990 Jan-Simon Pendry
4 * Copyright (c) 1990 Imperial College of Science, Technology & Medicine
5 * Copyright (c) 1990 The Regents of the University of California.
6 * All rights reserved.
7 *
8 * This code is derived from software contributed to Berkeley by
9 * Jan-Simon Pendry at Imperial College, London.
10 *

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

33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
38 *
39 * %W% (Berkeley) %G%
40 *
3 * Copyright (c) 1990 Jan-Simon Pendry
4 * Copyright (c) 1990 Imperial College of Science, Technology & Medicine
5 * Copyright (c) 1990 The Regents of the University of California.
6 * All rights reserved.
7 *
8 * This code is derived from software contributed to Berkeley by
9 * Jan-Simon Pendry at Imperial College, London.
10 *

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

33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
38 *
39 * %W% (Berkeley) %G%
40 *
41 * $Id: amq.c,v 1.7.2.5 2001/01/12 22:43:43 ro Exp $
41 * $Id: amq.c,v 1.7.2.8 2002/12/27 22:44:45 ezk Exp $
42 *
43 */
44
45#include <sys/cdefs.h>
42 *
43 */
44
45#include <sys/cdefs.h>
46__FBSDID("$FreeBSD: head/contrib/amd/amq/amq.c 96236 2002-05-09 00:41:18Z obrien $");
46__FBSDID("$FreeBSD: head/contrib/amd/amq/amq.c 119682 2003-09-02 15:42:57Z mbr $");
47
48/*
49 * Automounter query tool
50 */
51
52#ifndef lint
53char copyright[] = "\
47
48/*
49 * Automounter query tool
50 */
51
52#ifndef lint
53char copyright[] = "\
54@(#)Copyright (c) 1997-2001 Erez Zadok\n\
54@(#)Copyright (c) 1997-2003 Erez Zadok\n\
55@(#)Copyright (c) 1990 Jan-Simon Pendry\n\
56@(#)Copyright (c) 1990 Imperial College of Science, Technology & Medicine\n\
57@(#)Copyright (c) 1990 The Regents of the University of California.\n\
58@(#)All rights reserved.\n";
59#if __GNUC__ < 2
55@(#)Copyright (c) 1990 Jan-Simon Pendry\n\
56@(#)Copyright (c) 1990 Imperial College of Science, Technology & Medicine\n\
57@(#)Copyright (c) 1990 The Regents of the University of California.\n\
58@(#)All rights reserved.\n";
59#if __GNUC__ < 2
60static char rcsid[] = "$Id: amq.c,v 1.7.2.5 2001/01/12 22:43:43 ro Exp $";
60static char rcsid[] = "$Id: amq.c,v 1.7.2.8 2002/12/27 22:44:45 ezk Exp $";
61static char sccsid[] = "%W% (Berkeley) %G%";
62#endif /* __GNUC__ < 2 */
63#endif /* not lint */
64
65#ifdef HAVE_CONFIG_H
66# include <config.h>
67#endif /* HAVE_CONFIG_H */
68#include <am_defs.h>

--- 645 unchanged lines hidden ---
61static char sccsid[] = "%W% (Berkeley) %G%";
62#endif /* __GNUC__ < 2 */
63#endif /* not lint */
64
65#ifdef HAVE_CONFIG_H
66# include <config.h>
67#endif /* HAVE_CONFIG_H */
68#include <am_defs.h>

--- 645 unchanged lines hidden ---