// SPDX-License-Identifier: GPL-2.0#include<bfd.h>staticboollock(void*unused){returntrue;}staticboolunlock(void*unused){returntrue;}intmain(void){/* Check for presence of new thread safety API (version 2.42) */return!bfd_thread_init(lock,unlock,NULL);}