diff options
author | Roland McGrath <roland@gnu.org> | 2002-08-26 11:37:38 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-08-26 11:37:38 +0000 |
commit | ae287b19004d82be9e5d93b843dc7b642dce3d26 (patch) | |
tree | 5d45e1a5f83427f75707ac910a4e00a56f989445 /sysdeps | |
parent | 12ddb09b0a216d14997bdbca9030e6ed850131f1 (diff) | |
download | glibc-ae287b19004d82be9e5d93b843dc7b642dce3d26.tar glibc-ae287b19004d82be9e5d93b843dc7b642dce3d26.tar.gz glibc-ae287b19004d82be9e5d93b843dc7b642dce3d26.tar.bz2 glibc-ae287b19004d82be9e5d93b843dc7b642dce3d26.zip |
2002-07-06 Bruno Haible <bruno@clisp.org>
* sysdeps/unix/fork.S: Fix PSEUDO_END argument.
* sysdeps/unix/arm/fork.S: Likewise.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/arm/fork.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/arm/fork.S b/sysdeps/unix/arm/fork.S index a03fbe242e..deb22548e2 100644 --- a/sysdeps/unix/arm/fork.S +++ b/sysdeps/unix/arm/fork.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1992, 1994, 1995, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1991,92,94,95,97,2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -28,6 +28,6 @@ SYSCALL__ (fork, 0) sub r1, r1, $1 and r0, r0, r1 RETINSTR(mov, pc, r14) -PSEUDO_END(fork) +PSEUDO_END (__fork) weak_alias (__fork, fork) |