Blame libio/tst-bz24228.c

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