bfd: add stdlib.h when using abort

Since this file calls abort() now, we need to include stdlib.h for
its prototype.
This commit is contained in:
Mike Frysinger
2021-04-18 21:18:11 -04:00
parent 674c58574b
commit 3955e34670
2 changed files with 6 additions and 0 deletions

View File

@@ -1,3 +1,7 @@
2021-04-26 Mike Frysinger <vapier@gentoo.org>
* elf-bfd.h: Include stdlib.h.
2021-04-26 Jan Beulich <jbeulich@suse.com>
* elf32-i386.c (elf_howto_table): Switch R_386_PC16 to

View File

@@ -22,6 +22,8 @@
#ifndef _LIBELF_H_
#define _LIBELF_H_ 1
#include <stdlib.h>
#include "elf/common.h"
#include "elf/external.h"
#include "elf/internal.h"