(waitid): Rename to __waitid and make old name an alias.
authorUlrich Drepper <drepper@redhat.com>
Wed, 9 Oct 2002 09:28:58 +0000 (09:28 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 9 Oct 2002 09:28:58 +0000 (09:28 +0000)
sysdeps/unix/sysv/aix/waitid.c

index 36a012e..1d637df 100644 (file)
@@ -1,5 +1,5 @@
 /* Pseudo implementation of waitid.
-   Copyright (C) 1997, 1998, 2000 Free Software Foundation, Inc.
+   Copyright (C) 1997, 1998, 2000, 2002 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Zack Weinberg <zack@rabi.phys.columbia.edu>, 1997.
 
@@ -31,7 +31,7 @@ extern pid_t kwaitpid (int *stat_loc, pid_t pid, int options,
                       struct rusage *ru_loc, siginfo_t *infop);
 
 int
-waitid (idtype, id, infop, options)
+__waitid (idtype, id, infop, options)
      idtype_t idtype;
      id_t id;
      siginfo_t *infop;
@@ -80,3 +80,4 @@ waitid (idtype, id, infop, options)
 
   return 0;
 }
+weak_alias (__waitid, waitid)