(__recvmsg): Renamed from recvmsg, add recvmsg as weak alias.

This commit is contained in:
Ulrich Drepper 2002-05-15 00:07:30 +00:00
parent 9b282d8121
commit 7fbbcc094f

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
/* Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -21,7 +21,9 @@
extern ssize_t nrecvmsg (int s, struct msghdr *uap_msg, int flags);
ssize_t
recvmsg (int fd, struct msghdr *message, int flags)
__recvmsg (int fd, struct msghdr *message, int flags)
{
return nrecvmsg (fd, message, flags);
}
weak_alias (__recvmsg, recvmsg)