From: Ulrich Drepper Date: Sat, 16 Aug 1997 19:38:06 +0000 (+0000) Subject: Rename to __getutid and make getutid a weak alias. X-Git-Tag: cvs/libc-ud-970816~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3890740829f1b20b65a04b9f78c95ded51ed911c;p=thirdparty%2Fglibc.git Rename to __getutid and make getutid a weak alias. --- diff --git a/login/getutid.c b/login/getutid.c index d3d3b5d0682..b4d84bb0e7d 100644 --- a/login/getutid.c +++ b/login/getutid.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 * -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)