]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Rename to __getutid and make getutid a weak alias.
authorUlrich Drepper <drepper@redhat.com>
Sat, 16 Aug 1997 19:38:06 +0000 (19:38 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 16 Aug 1997 19:38:06 +0000 (19:38 +0000)
login/getutid.c

index d3d3b5d06822aab66947c5a0f2b391bea2d939e7..b4d84bb0e7da269ed1ec91a2def43aea5a5d6ddd 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996 Free Software Foundation, Inc.
+/* Copyright (C) 1996, 1997 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
 
@@ -25,7 +25,7 @@ static struct utmp buffer;
 
 
 struct utmp *
-getutid (const struct utmp *id)
+__getutid (const struct utmp *id)
 {
   struct utmp *result;
 
@@ -34,3 +34,4 @@ getutid (const struct utmp *id)
 
   return result;
 }
+weak_alias (__getutid, getutid)