diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-10-03 16:37:04 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-10-03 16:37:04 +0000 |
commit | 7edd1b564cbcdf4fa7481eb8cbe1354eb5a686ff (patch) | |
tree | e4845158df37bb2a0e020b3138f51f3003cfbd0b /sysdeps | |
parent | 0ea49d3cef5bbd722606606c2596dd18c88de0f0 (diff) | |
download | glibc-7edd1b564cbcdf4fa7481eb8cbe1354eb5a686ff.zip glibc-7edd1b564cbcdf4fa7481eb8cbe1354eb5a686ff.tar.gz glibc-7edd1b564cbcdf4fa7481eb8cbe1354eb5a686ff.tar.bz2 |
Update.
2002-10-03 Jakub Jelinek <jakub@redhat.com>
* sysdeps/unix/sysv/linux/_exit.c (__syscall_exit,
__syscall_exit_group): New prototypes.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/_exit.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/_exit.c b/sysdeps/unix/sysv/linux/_exit.c index a8126a6..7f96da6 100644 --- a/sysdeps/unix/sysv/linux/_exit.c +++ b/sysdeps/unix/sysv/linux/_exit.c @@ -22,6 +22,9 @@ #include <sysdep.h> #include <abort-instr.h> +extern void __syscall_exit_group (int status); +extern void __syscall_exit (int status); + void _exit (status) |