From: Ulrich Drepper Date: Sat, 16 Aug 1997 19:36:36 +0000 (+0000) Subject: Rename to __getutent and make getutent a weak alias. X-Git-Tag: cvs/libc-ud-970816~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2b64f75daa343e73c8341837bbd1d62ae649c827;p=thirdparty%2Fglibc.git Rename to __getutent and make getutent a weak alias. --- diff --git a/login/getutent.c b/login/getutent.c index e9462db18d5..f47b976b0f2 100644 --- a/login/getutent.c +++ b/login/getutent.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 * -getutent (void) +__getutent (void) { struct utmp *result; @@ -34,3 +34,4 @@ getutent (void) return result; } +weak_alias (__getutent, getutent)