]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Use INTDEF for __fork.
authorUlrich Drepper <drepper@redhat.com>
Tue, 9 Apr 2002 20:22:09 +0000 (20:22 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 9 Apr 2002 20:22:09 +0000 (20:22 +0000)
sysdeps/unix/sysv/aix/fork.c

index f31f3428a9839cd2a310c4825bb1e1274d390681..085342b7167e18ca0f53281b098add9789d19b96 100644 (file)
@@ -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
 
 #include <unistd.h>
 
+#undef __fork
 
 pid_t
 __fork (void)
 {
   return kfork ();
 }
+INTDEF(__fork)
 strong_alias (__fork, fork)