mirror of git://sourceware.org/git/glibc.git
libio: make _IO_least_marker static
Trivial cleanup to limit _IO_least_marker so that it's clear that it is unused outside of genops. Signed-off-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
This commit is contained in:
parent
c69e8cccaf
commit
293369689a
|
@ -135,9 +135,7 @@ libc_hidden_def (_IO_link_in)
|
||||||
|
|
||||||
/* Return minimum _pos markers
|
/* Return minimum _pos markers
|
||||||
Assumes the current get area is the main get area. */
|
Assumes the current get area is the main get area. */
|
||||||
ssize_t _IO_least_marker (FILE *fp, char *end_p);
|
static ssize_t
|
||||||
|
|
||||||
ssize_t
|
|
||||||
_IO_least_marker (FILE *fp, char *end_p)
|
_IO_least_marker (FILE *fp, char *end_p)
|
||||||
{
|
{
|
||||||
ssize_t least_so_far = end_p - fp->_IO_read_base;
|
ssize_t least_so_far = end_p - fp->_IO_read_base;
|
||||||
|
|
Loading…
Reference in New Issue