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

__netlink_assert_response: Remove internal_function attribute

This function is called from nscd and should not use a non-standard
calling convention.
This commit is contained in:
Florian Weimer
2017-08-13 21:11:28 +02:00
parent c4d767f7f3
commit c4ce038287
3 changed files with 8 additions and 3 deletions

View File

@ -51,8 +51,7 @@ extern int __netlink_request (struct netlink_handle *h, int type);
/* Terminate the process if RESULT is an invalid recvmsg result for
the netlink socket FD. */
void __netlink_assert_response (int fd, ssize_t result)
internal_function;
void __netlink_assert_response (int fd, ssize_t result);
libc_hidden_proto (__netlink_assert_response)
#endif /* netlinkaccess.h */