From aed218a10cb654d2cf0e34e335c52cb73d548051 Mon Sep 17 00:00:00 2001 From: midipix Date: Sat, 2 Feb 2019 09:51:09 -0500 Subject: weak hidden symbols: provide a strong __stdio_exit_needed(). --- src/stdio/nt32/__stdio_exit_needed.s | 8 ++++++++ src/stdio/nt64/__stdio_exit_needed.s | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 src/stdio/nt32/__stdio_exit_needed.s create mode 100644 src/stdio/nt64/__stdio_exit_needed.s (limited to 'src') diff --git a/src/stdio/nt32/__stdio_exit_needed.s b/src/stdio/nt32/__stdio_exit_needed.s new file mode 100644 index 0000000..e304853 --- /dev/null +++ b/src/stdio/nt32/__stdio_exit_needed.s @@ -0,0 +1,8 @@ +.text + +.def ___stdio_exit_needed; .scl 2; .type 32; .endef + +.globl ___stdio_exit_needed + +___stdio_exit_needed: + jmp ___stdio_exit diff --git a/src/stdio/nt64/__stdio_exit_needed.s b/src/stdio/nt64/__stdio_exit_needed.s new file mode 100644 index 0000000..9e3b279 --- /dev/null +++ b/src/stdio/nt64/__stdio_exit_needed.s @@ -0,0 +1,8 @@ +.text + +.def __stdio_exit_needed; .scl 2; .type 32; .endef + +.globl __stdio_exit_needed + +__stdio_exit_needed: + jmpq __stdio_exit -- cgit v1.2.3