Blame elf/tst-auditlogmod-3.c

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