From: Ulrich Drepper Date: Sat, 16 Aug 1997 19:38:59 +0000 (+0000) Subject: Rename to __getutline and make getutline a weak alias. X-Git-Tag: cvs/libc-ud-970816~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2462764678d7d396bab3706b2be91e2ebfeaf9df;p=thirdparty%2Fglibc.git Rename to __getutline and make getutline a weak alias. --- diff --git a/login/getutline.c b/login/getutline.c index 16a02f6e890..bdbb8dad9b0 100644 --- a/login/getutline.c +++ b/login/getutline.c @@ -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 , 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)