Blame elf/tst-auditlogmod-2.c

Packit Service 48062d
/* Audit module which logs that it was loaded.  Variant 2.
Packit Service 48062d
   Copyright (C) 2020 Free Software Foundation, Inc.
Packit Service 48062d
   This file is part of the GNU C Library.
Packit Service 48062d
Packit Service 48062d
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 48062d
   modify it under the terms of the GNU Lesser General Public
Packit Service 48062d
   License as published by the Free Software Foundation; either
Packit Service 48062d
   version 2.1 of the License, or (at your option) any later version.
Packit Service 48062d
Packit Service 48062d
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 48062d
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 48062d
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 48062d
   Lesser General Public License for more details.
Packit Service 48062d
Packit Service 48062d
   You should have received a copy of the GNU Lesser General Public
Packit Service 48062d
   License along with the GNU C Library; if not, see
Packit Service 48062d
   <https://www.gnu.org/licenses/>.  */
Packit Service 48062d
Packit Service 48062d
#include <link.h>
Packit Service 48062d
#include <support/support.h>
Packit Service 48062d
Packit Service 48062d
unsigned int
Packit Service 48062d
la_version (unsigned int v)
Packit Service 48062d
{
Packit Service 48062d
  write_message ("info: tst-auditlogmod-2.so loaded\n");
Packit Service 48062d
  return LAV_CURRENT;
Packit Service 48062d
}