1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

Fix lots of bitrot for stub configurations.

This commit is contained in:
Roland McGrath
2012-07-30 16:09:11 -07:00
parent fc56c5bbc1
commit bea9b19322
39 changed files with 292 additions and 80 deletions

View File

@ -1,4 +1,4 @@
/* Copyright (C) 2008 Free Software Foundation, Inc.
/* Copyright (C) 2008-2012 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
@ -25,7 +25,7 @@
new socket's descriptor, or -1 for errors. The operation can be influenced
by the FLAGS parameter. */
int
accept4 (fd, addr, addr_len, flags)
__libc_accept4 (fd, addr, addr_len, flags)
int fd;
__SOCKADDR_ARG addr;
socklen_t *addr_len;
@ -34,7 +34,8 @@ accept4 (fd, addr, addr_len, flags)
__set_errno (ENOSYS);
return -1;
}
libc_hidden_def (accept4)
libc_hidden_def (__libc_accept4)
weak_alias (__libc_accept4, accept4)
stub_warning (accept4)