mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-17 02:36:21 +00:00
9 lines
183 B
C
9 lines
183 B
C
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
#include <bfd.h>
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
bfd *abfd = bfd_openr("Pedro", 0);
|
||
|
return abfd && (!abfd->build_id || abfd->build_id->size > 0x506564726f);
|
||
|
}
|