Blame elf/tst-dlopen-nodelete-reloc-mod16.c

Packit Service f35cab
/* Object with an undefined symbol to trigger a relocation failure.
Packit Service f35cab
   Copyright (C) 2019 Free Software Foundation, Inc.
Packit Service f35cab
   This file is part of the GNU C Library.
Packit Service f35cab
Packit Service f35cab
   The GNU C Library is free software; you can redistribute it and/or
Packit Service f35cab
   modify it under the terms of the GNU Lesser General Public
Packit Service f35cab
   License as published by the Free Software Foundation; either
Packit Service f35cab
   version 2.1 of the License, or (at your option) any later version.
Packit Service f35cab
Packit Service f35cab
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service f35cab
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service f35cab
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service f35cab
   Lesser General Public License for more details.
Packit Service f35cab
Packit Service f35cab
   You should have received a copy of the GNU Lesser General Public
Packit Service f35cab
   License along with the GNU C Library; if not, see
Packit Service f35cab
   <https://www.gnu.org/licenses/>.  */
Packit Service f35cab
Packit Service f35cab
/* The reference to undefined_mod16 triggers a relocation failure.  */
Packit Service f35cab
Packit Service f35cab
extern int undefined_mod16;
Packit Service f35cab
Packit Service f35cab
int
Packit Service f35cab
global_function_mod16 (void)
Packit Service f35cab
{
Packit Service f35cab
  return undefined_mod16;
Packit Service f35cab
}