diff options
author | Ulf Hermann <ulf.hermann@qt.io> | 2017-02-16 10:10:30 +0100 |
---|---|---|
committer | Mark Wielaard <mark@klomp.org> | 2017-02-17 10:45:39 +0100 |
commit | b3248e684cedf66239710a5f16a6b45294f183bc (patch) | |
tree | f8184f18599492e9d8f2727d3a5fba005429578b /libebl | |
parent | cb379c4d7859848572c224f7bebd107b02adcfd6 (diff) | |
download | elfutils-b3248e684cedf66239710a5f16a6b45294f183bc.tar.gz |
Check for existence of mempcpy
If it doesn't exist, provide a definition based on memcpy.
Signed-off-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'libebl')
-rw-r--r-- | libebl/ChangeLog | 5 | ||||
-rw-r--r-- | libebl/eblmachineflagname.c | 1 | ||||
-rw-r--r-- | libebl/eblopenbackend.c | 1 |
3 files changed, 7 insertions, 0 deletions
diff --git a/libebl/ChangeLog b/libebl/ChangeLog index 0560c6ac..719d08d0 100644 --- a/libebl/ChangeLog +++ b/libebl/ChangeLog @@ -1,3 +1,8 @@ +2017-02-15 Ulf Hermann <ulf.hermann@qt.io> + + * eblmachineflagname.c: Include system.h. + * eblopenbackend.c: Likewise. + 2016-07-08 Mark Wielaard <mjw@redhat.com> * Makefile.am (gen_SOURCES): Remove eblstrtab.c. diff --git a/libebl/eblmachineflagname.c b/libebl/eblmachineflagname.c index 6079a613..5f440776 100644 --- a/libebl/eblmachineflagname.c +++ b/libebl/eblmachineflagname.c @@ -33,6 +33,7 @@ #include <stdio.h> #include <string.h> +#include <system.h> #include <libeblP.h> diff --git a/libebl/eblopenbackend.c b/libebl/eblopenbackend.c index aa75b957..f3a65cfa 100644 --- a/libebl/eblopenbackend.c +++ b/libebl/eblopenbackend.c @@ -39,6 +39,7 @@ #include <string.h> #include <stdio.h> +#include <system.h> #include <libeblP.h> |