1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

NSS: Do not use internal_function for functions with hidden aliases

Such functions are called across DSO boundaries and should not
use a non-standard ABI.
This commit is contained in:
Florian Weimer
2017-08-13 21:10:56 +02:00
parent 1b0bfc6946
commit b22974092d
9 changed files with 24 additions and 25 deletions

View File

@ -25,13 +25,11 @@
calling function must free(newbuf). */
int
__copy_grp (const struct group srcgrp, const size_t buflen,
struct group *destgrp, char *destbuf, char **endptr)
internal_function;
struct group *destgrp, char *destbuf, char **endptr);
/* Merge the member lists of two grp structs together. */
int
__merge_grp (struct group *savedgrp, char *savedbuf, char *savedend,
size_t buflen, struct group *mergegrp, char *mergebuf)
internal_function;
size_t buflen, struct group *mergegrp, char *mergebuf);
#endif /* _GRP_MERGE_H */