linuxdebug/tools/build/feature/test-libbfd-buildid.c
Ulrich Bessoh 872f2f0714 no changes
2024-07-09 16:52:29 +02:00

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);
}