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

Rename procutils_read_file to __libc_procutils_read_file [BZ #31755]

Fix BZ #31755 by renaming the internal function procutils_read_file to
__libc_procutils_read_file.

Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
This commit is contained in:
H.J. Lu
2024-05-19 18:46:36 -07:00
parent 4e21cb95e2
commit 7935e7a537
3 changed files with 7 additions and 5 deletions

View File

@ -37,7 +37,8 @@ typedef int (*procutils_closure_t) (const char *line, void *arg);
It returns true in case the file is fully read or false if CLOSURE
returns a value diferent than 0. */
bool procutils_read_file (const char *filename, procutils_closure_t closure,
void *arg) attribute_hidden;
bool __libc_procutils_read_file (const char *filename,
procutils_closure_t closure,
void *arg) attribute_hidden;
#endif