summaryrefslogtreecommitdiff
path: root/contrib/gcc/libgcc1-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/gcc/libgcc1-test.c')
-rw-r--r--contrib/gcc/libgcc1-test.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/gcc/libgcc1-test.c b/contrib/gcc/libgcc1-test.c
index 392d4fc7e9c2..d9c250e99d00 100644
--- a/contrib/gcc/libgcc1-test.c
+++ b/contrib/gcc/libgcc1-test.c
@@ -95,6 +95,12 @@ dfoo ()
message saying the start address is defaulted. */
extern void start() __asm__("start");
extern void _start() __asm__("_start");
+extern void __start() __asm__("__start");
+
+/* Provide functions that might be needed by soft-float emulation routines. */
+void memcpy() {}
void start() {}
void _start() {}
+void __start() {}
+void mainCRTStartup() {}