From: Ulrich Drepper Date: Tue, 9 Apr 2002 20:22:09 +0000 (+0000) Subject: Use INTDEF for __fork. X-Git-Tag: glibc-2.16-ports-before-merge~1712 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d6a57cb89405cc626f2bfe7252ff367ed16cb17e;p=thirdparty%2Fglibc.git Use INTDEF for __fork. --- diff --git a/sysdeps/unix/sysv/aix/fork.c b/sysdeps/unix/sysv/aix/fork.c index f31f3428a98..085342b7167 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 +#undef __fork pid_t __fork (void) { return kfork (); } +INTDEF(__fork) strong_alias (__fork, fork)