License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-block.git] / tools / build / feature / test-libelf.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
8f7f8005
IM
2#include <libelf.h>
3
4int main(void)
5{
6 Elf *elf = elf_begin(0, ELF_C_READ, 0);
20c99e82 7
8f7f8005
IM
8 return (long)elf;
9}