summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/m68k/crt0.S
diff options
context:
space:
mode:
Diffstat (limited to 'libc/sysdeps/linux/m68k/crt0.S')
-rw-r--r--libc/sysdeps/linux/m68k/crt0.S9
1 files changed, 9 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/m68k/crt0.S b/libc/sysdeps/linux/m68k/crt0.S
index 36546835c..44aca7fd1 100644
--- a/libc/sysdeps/linux/m68k/crt0.S
+++ b/libc/sysdeps/linux/m68k/crt0.S
@@ -61,3 +61,12 @@ empty_func:
.set atexit,empty_func
#endif
+
+/* Define a symbol for the first piece of initialized data. */
+ .data
+ .globl __data_start
+__data_start:
+ .long 0
+ .weak data_start
+ data_start = __data_start
+