blob: 96a7f8d30a595e0e66336358c36ee490f834eaf3 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Ingo Molnarb7bcef62013-09-30 14:35:27 +02002#include <libelf.h>
Ingo Molnar20c99e82013-10-07 13:27:23 +02003
Ingo Molnarb7bcef62013-09-30 14:35:27 +02004int main(void)
5{
6 size_t dst;
Ingo Molnar20c99e82013-10-07 13:27:23 +02007
Ingo Molnarb7bcef62013-09-30 14:35:27 +02008 return elf_getphdrnum(0, &dst);
9}