diff options
author | Ulrich Drepper <drepper@redhat.com> | 1997-08-16 19:38:06 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1997-08-16 19:38:06 +0000 |
commit | 3890740829f1b20b65a04b9f78c95ded51ed911c (patch) | |
tree | c3e7a45705747263ceebc722a3cf956343acdfd6 | |
parent | 2b64f75daa343e73c8341837bbd1d62ae649c827 (diff) | |
download | glibc-3890740829f1b20b65a04b9f78c95ded51ed911c.tar.gz glibc-3890740829f1b20b65a04b9f78c95ded51ed911c.tar.xz glibc-3890740829f1b20b65a04b9f78c95ded51ed911c.zip |
Rename to __getutid and make getutid a weak alias.
-rw-r--r-- | login/getutid.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/login/getutid.c b/login/getutid.c index d3d3b5d068..b4d84bb0e7 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 <drepper@cygnus.com>, 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) |