diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-04-09 20:22:09 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-04-09 20:22:09 +0000 |
commit | d6a57cb89405cc626f2bfe7252ff367ed16cb17e (patch) | |
tree | e90ad65062ef8a7345f2e41916e73807a8fb8e3e /sysdeps/unix/sysv | |
parent | 1555f102ef6f0a8f080190585c842ba0eba58d63 (diff) | |
download | glibc-d6a57cb89405cc626f2bfe7252ff367ed16cb17e.tar glibc-d6a57cb89405cc626f2bfe7252ff367ed16cb17e.tar.gz glibc-d6a57cb89405cc626f2bfe7252ff367ed16cb17e.tar.bz2 glibc-d6a57cb89405cc626f2bfe7252ff367ed16cb17e.zip |
Use INTDEF for __fork.
Diffstat (limited to 'sysdeps/unix/sysv')
-rw-r--r-- | sysdeps/unix/sysv/aix/fork.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/aix/fork.c b/sysdeps/unix/sysv/aix/fork.c index f31f3428a9..085342b716 100644 --- a/sysdeps/unix/sysv/aix/fork.c +++ b/sysdeps/unix/sysv/aix/fork.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1999, 2000, 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 @@ -18,10 +18,12 @@ #include <unistd.h> +#undef __fork pid_t __fork (void) { return kfork (); } +INTDEF(__fork) strong_alias (__fork, fork) |