OSDN Git Service

Replace FSF snail mail address with URLs
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / nios / clone.S
index c4799c5..9641d68 100644 (file)
@@ -13,9 +13,8 @@
    Lesser General Public License for more details.
 
    You should have received a copy of the GNU Lesser General Public
-   License along with the GNU C Library; if not, write to the Free
-   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-   02111-1307 USA.  */
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
 
 /* clone() is even more special than fork() as it mucks with stacks
    and invokes a function in the right context after its all over.  */
 
        .text
        .align  2
-       .globl  __clone
-       .type   __clone,@function
+       .globl  clone
+       .type   clone,@function
 
-__clone:
+clone:
        save    %sp,-16
 
        MOVIP   %l0, -EINVAL
@@ -74,7 +73,7 @@ CLONE_ERROR_LABEL:
        ret
         restore
 
-       .size   __clone, .-__clone
+       .size   clone, .-clone
 
        .type   __thread_start,@function
 
@@ -86,6 +85,3 @@ __thread_start:
         nop
 
        .size   __thread_start, .-__thread_start
-
-.weak clone
-    clone = __clone