1109607Sjake/*-
2330449Seadler * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3330449Seadler *
4109607Sjake * Copyright (c) 2003 Jake Burkholder.
5109607Sjake * All rights reserved.
6109607Sjake *
7109607Sjake * Redistribution and use in source and binary forms, with or without
8109607Sjake * modification, are permitted provided that the following conditions
9109607Sjake * are met:
10109607Sjake * 1. Redistributions of source code must retain the above copyright
11109607Sjake *    notice, this list of conditions and the following disclaimer.
12109607Sjake * 2. Redistributions in binary form must reproduce the above copyright
13109607Sjake *    notice, this list of conditions and the following disclaimer in the
14109607Sjake *    documentation and/or other materials provided with the distribution.
15109607Sjake *
16109607Sjake * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17109607Sjake * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18109607Sjake * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19109607Sjake * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20109607Sjake * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21109607Sjake * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22109607Sjake * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23109607Sjake * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24109607Sjake * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25109607Sjake * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26109607Sjake * SUCH DAMAGE.
27109607Sjake *
28109607Sjake * $FreeBSD: stable/11/usr.sbin/kldxref/ef_nop.c 330449 2018-03-05 07:26:05Z eadler $
29109607Sjake */
30109607Sjake
31109607Sjake#include <sys/types.h>
32109607Sjake#include <machine/elf.h>
33109607Sjake
34109607Sjake#include "ef.h"
35109607Sjake
36109607Sjakeint
37134450Siedowseef_reloc(struct elf_file *ef, const void *reldata, int reltype, Elf_Off relbase,
38134450Siedowse    Elf_Off dataoff, size_t len, void *dest)
39109607Sjake{
40109607Sjake
41109607Sjake	return (0);
42109607Sjake}
43