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

index e9462db18d5b09f9a5f705b92c2f0504febe8557..f47b976b0f2f8041e4bd7716b3df9c5fc8f6223c 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 *
-getutent (void)
+__getutent (void)
 {
   struct utmp *result;
 
@@ -34,3 +34,4 @@ getutent (void)
 
   return result;
 }
+weak_alias (__getutent, getutent)