1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00

Mark internal gshadow functions with attribute_hidden [BZ #18822]

Mark internal gshadow functions with attribute_hidden to allow direct
access within libc.so and libc.a without using GOT nor PLT.

	[BZ #18822]
	* include/gshadow.h (__fgetsgent_r): Add attribute_hidden.
	(__sgetsgent_r): Likewise.
This commit is contained in:
H.J. Lu
2017-10-01 15:19:01 -07:00
parent e1b33bba7c
commit 94fd682c9b
2 changed files with 10 additions and 2 deletions

View File

@@ -4,9 +4,11 @@
# ifndef _ISOMAC
extern int __fgetsgent_r (FILE *stream, struct sgrp *resbuf, char *buffer,
size_t buflen, struct sgrp **result);
size_t buflen, struct sgrp **result)
attribute_hidden;
extern int __sgetsgent_r (const char *string, struct sgrp *resbuf,
char *buffer, size_t buflen, struct sgrp **result);
char *buffer, size_t buflen, struct sgrp **result)
attribute_hidden;
struct parser_data;
extern int _nss_files_parse_sgent (char *line, struct sgrp *result,