1 /* Explicit test compiling with system elf.h header plus libelf header. 2 3 Copyright (C) 2016 Red Hat, Inc. 4 This file is part of elfutils. 5 6 This file is free software; you can redistribute it and/or modify 7 it under the terms of the GNU General Public License as published by 8 the Free Software Foundation; either version 3 of the License, or 9 (at your option) any later version. 10 11 elfutils is distributed in the hope that it will be useful, but 12 WITHOUT ANY WARRANTY; without even the implied warranty of 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 GNU General Public License for more details. 15 16 You should have received a copy of the GNU General Public License 17 along with this program. If not, see <http://www.gnu.org/licenses/>. */ 18 19 #include <elf.h> 20 #include <stddef.h> 21 #include "../libelf/libelf.h" 22 23 int 24 main (void) 25 { 26 /* Trivial test, this is really a compile test anyway. */ 27 if (elf_version (EV_CURRENT) == EV_NONE) 28 return -1; 29 30 /* This will obviously fail. It is just to check that Elf32_Chdr and 31 elf32_getchdr are available (both at compile time and runtime). */ 32 Elf32_Chdr *chdr = elf32_getchdr (NULL); 33 34 return chdr == NULL ? 0 : -1; 35 } 36