blob: 62a4bb0127ccf563bcb7919aba2d93b911ddd188 [file] [log] [blame]
/* Check if backend uses a bss PLT.
Copyright (C) 2005 Red Hat, Inc.
This program is Open Source software; you can redistribute it and/or
modify it under the terms of the Open Software License version 1.0 as
published by the Open Source Initiative.
You should have received a copy of the Open Software License along
with this program; if not, you may obtain a copy of the Open Software
License version 1.0 from http://www.opensource.org/licenses/osl.php or
by writing the Open Source Initiative c/o Lawrence Rosen, Esq.,
3001 King Ranch Road, Ukiah, CA 95482. */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <inttypes.h>
#include <libeblP.h>
bool
ebl_bss_plt_p (ebl, ehdr)
Ebl *ebl;
GElf_Ehdr *ehdr;
{
return ebl == NULL ? false : ebl->bss_plt_p (ebl->elf, ehdr);
}