diff options
Diffstat (limited to 'libc/arch-sh/bionic/crtbegin_dynamic.S')
-rw-r--r-- | libc/arch-sh/bionic/crtbegin_dynamic.S | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libc/arch-sh/bionic/crtbegin_dynamic.S b/libc/arch-sh/bionic/crtbegin_dynamic.S index dc485dd..daf6c8b 100644 --- a/libc/arch-sh/bionic/crtbegin_dynamic.S +++ b/libc/arch-sh/bionic/crtbegin_dynamic.S @@ -1,5 +1,5 @@ /* - * Copyright (C) 2009 The Android Open Source Project + * Copyright (C) 2009-2010 The Android Open Source Project * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -31,7 +31,7 @@ .globl _start # this is the small startup code that is first run when -# any executable that is statically-linked with Bionic +# any executable that is dynamically-linked with Bionic # runs. # # it's purpose is to call __libc_init with appropriate @@ -93,3 +93,5 @@ __FINI_ARRAY__: .globl __CTOR_LIST__ __CTOR_LIST__: .long -1 + +#include "__dso_handle.S" |