diff options
Diffstat (limited to 'libc/sysdeps/linux/m68k/crt0.S')
-rw-r--r-- | libc/sysdeps/linux/m68k/crt0.S | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/libc/sysdeps/linux/m68k/crt0.S b/libc/sysdeps/linux/m68k/crt0.S index 04aae1466..78f3ca8a9 100644 --- a/libc/sysdeps/linux/m68k/crt0.S +++ b/libc/sysdeps/linux/m68k/crt0.S @@ -60,18 +60,3 @@ empty_func: .set atexit,empty_func #endif -/* - * a little bit of stuff to support C++ - */ - .section .ctors,"aw" - .align 4 - .global __CTOR_LIST__ -__CTOR_LIST__: - .long -1 - - .section .dtors,"aw" - .align 4 - .global __DTOR_LIST__ -__DTOR_LIST__: - .long -1 - |