Blame elf/libc_early_init.c

Packit Service b61b6e
/* Early initialization of libc.so, libc.so side.
Packit Service b61b6e
   Copyright (C) 2020 Free Software Foundation, Inc.
Packit Service b61b6e
   This file is part of the GNU C Library.
Packit Service b61b6e
Packit Service b61b6e
   The GNU C Library is free software; you can redistribute it and/or
Packit Service b61b6e
   modify it under the terms of the GNU Lesser General Public
Packit Service b61b6e
   License as published by the Free Software Foundation; either
Packit Service b61b6e
   version 2.1 of the License, or (at your option) any later version.
Packit Service b61b6e
Packit Service b61b6e
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service b61b6e
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service b61b6e
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service b61b6e
   Lesser General Public License for more details.
Packit Service b61b6e
Packit Service b61b6e
   You should have received a copy of the GNU Lesser General Public
Packit Service b61b6e
   License along with the GNU C Library; if not, see
Packit Service b61b6e
   <https://www.gnu.org/licenses/>.  */
Packit Service b61b6e
Packit Service b61b6e
#include <ctype.h>
Packit Service b61b6e
#include <libc-early-init.h>
Packit Service b61b6e
Packit Service b61b6e
void
Packit Service 7f405e
__libc_early_init (_Bool initial)
Packit Service b61b6e
{
Packit Service b61b6e
  /* Initialize ctype data.  */
Packit Service b61b6e
  __ctype_init ();
Packit Service b61b6e
}