138836Sjdp/*-
238836Sjdp * Copyright (c) 1998 John D. Polstra
338836Sjdp * All rights reserved.
438836Sjdp *
538836Sjdp * Redistribution and use in source and binary forms, with or without
638836Sjdp * modification, are permitted provided that the following conditions
738836Sjdp * are met:
838836Sjdp * 1. Redistributions of source code must retain the above copyright
938836Sjdp *    notice, this list of conditions and the following disclaimer.
1038836Sjdp * 2. Redistributions in binary form must reproduce the above copyright
1138836Sjdp *    notice, this list of conditions and the following disclaimer in the
1238836Sjdp *    documentation and/or other materials provided with the distribution.
1338836Sjdp *
1438836Sjdp * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1538836Sjdp * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1638836Sjdp * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1738836Sjdp * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1838836Sjdp * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1938836Sjdp * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2038836Sjdp * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2138836Sjdp * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2238836Sjdp * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2338836Sjdp * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2438836Sjdp * SUCH DAMAGE.
2538836Sjdp *
2650476Speter * $FreeBSD$
2738836Sjdp */
2838836Sjdp
2938836Sjdp#ifndef LDCONFIG_H
3038836Sjdp#define LDCONFIG_H 1
3138836Sjdp
3238836Sjdp#include <sys/cdefs.h>
3338836Sjdp
3472923Spsextern int	insecure;	/* -i flag, needed here for elfhints.c */
3564360Sjdp
3638836Sjdp__BEGIN_DECLS
3792882Simpvoid	list_elf_hints(const char *);
3892882Simpvoid	update_elf_hints(const char *, int, char **, int);
3938836Sjdp__END_DECLS
4038836Sjdp
4138836Sjdp#endif
42