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

index 16a02f6e89058ef08391df1628ee0a5b2876e294..bdbb8dad9b07d277d2cd19fb7c0707ccafa87cd6 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 *
-getutline (const struct utmp *line)
+__getutline (const struct utmp *line)
 {
   struct utmp *result;
 
@@ -34,3 +34,4 @@ getutline (const struct utmp *line)
 
   return result;
 }
+weak_alias (__getutline, getutline)