Blame sysdeps/mips/tst-undefined-weak.c

Packit Service 88882b
/* Undefined weak symbol loading main executable.
Packit Service 88882b
   Copyright (C) 2019 Free Software Foundation, Inc.
Packit Service 88882b
   This file is part of the GNU C Library.
Packit Service 88882b
Packit Service 88882b
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 88882b
   modify it under the terms of the GNU Lesser General Public
Packit Service 88882b
   License as published by the Free Software Foundation; either
Packit Service 88882b
   version 2.1 of the License, or (at your option) any later version.
Packit Service 88882b
Packit Service 88882b
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 88882b
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 88882b
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 88882b
   Lesser General Public License for more details.
Packit Service 88882b
Packit Service 88882b
   You should have received a copy of the GNU Lesser General Public
Packit Service 88882b
   License along with the GNU C Library; if not, see
Packit Service 88882b
   <http://www.gnu.org/licenses/>.  */
Packit Service 88882b
Packit Service 88882b
int *x (void);
Packit Service 88882b
Packit Service 88882b
int
Packit Service 88882b
do_test (void)
Packit Service 88882b
{
Packit Service 88882b
  x ();
Packit Service 88882b
  return 0;
Packit Service 88882b
}
Packit Service 88882b
Packit Service 88882b
#include <support/test-driver.c>