Commit 30ae6662 by Eli Zaretskii Committed by Richard Biener

simple-object-elf.c (ENOTSUP): If not defined by errno.h, redirect to ENOSYS.

2018-07-19  Eli Zaretskii  <eliz@gnu.org>

	* simple-object-elf.c (ENOTSUP): If not defined by errno.h, redirect
	to ENOSYS.

From-SVN: r262872
parent 6e559c70
2018-07-19 Eli Zaretskii <eliz@gnu.org>
* simple-object-elf.c (ENOTSUP): If not defined by errno.h, redirect
to ENOSYS.
2018-05-30 Jan Hubicka <hubicka@ucw.cz>
* simple-object.c (handle_lto_debug_sections): Add rename parameter.
......
......@@ -22,6 +22,10 @@ Boston, MA 02110-1301, USA. */
#include "simple-object.h"
#include <errno.h>
/* mingw.org's MinGW doesn't have ENOTSUP. */
#ifndef ENOTSUP
# define ENOTSUP ENOSYS
#endif
#include <stddef.h>
#ifdef HAVE_STDLIB_H
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment