Blame elf/tst-audit13.c

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