Blame elf/tst-filterobj-filtee.c

Packit Service a1045b
/* Filtee for BZ#16272 test.
Packit Service a1045b
   Contains desired symbol implementations.
Packit Service a1045b
Packit Service a1045b
   Copyright (C) 2020 Free Software Foundation, Inc.
Packit Service a1045b
   This file is part of the GNU C Library.
Packit Service a1045b
Packit Service a1045b
   The GNU C Library is free software; you can redistribute it and/or
Packit Service a1045b
   modify it under the terms of the GNU Lesser General Public
Packit Service a1045b
   License as published by the Free Software Foundation; either
Packit Service a1045b
   version 2.1 of the License, or (at your option) any later version.
Packit Service a1045b
Packit Service a1045b
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service a1045b
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service a1045b
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service a1045b
   Lesser General Public License for more details.
Packit Service a1045b
Packit Service a1045b
   You should have received a copy of the GNU Lesser General Public
Packit Service a1045b
   License along with the GNU C Library; if not, see
Packit Service a1045b
   <https://www.gnu.org/licenses/>.  */
Packit Service a1045b
Packit Service a1045b
#include "tst-filterobj-filtee.h"
Packit Service a1045b
Packit Service a1045b
/* This is the real implementation that wants to be called */
Packit Service a1045b
const char *get_text (void)
Packit Service a1045b
{
Packit Service a1045b
  return "Hello from filtee (PASS)";
Packit Service a1045b
}