summaryrefslogtreecommitdiff
path: root/src/internal/stdio_impl.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2020-04-17 16:18:07 -0400
committerRich Felker <dalias@aerifal.cx>2020-04-17 16:18:07 -0400
commit2e0907ce624e2058bb31fab5ae565f413dbaf87f (patch)
tree039a027b823c5e6664f867781df568a478495ee0 /src/internal/stdio_impl.h
parent2acf3bce0130fc58f79110f600825e268ca5a608 (diff)
downloadmusl-2e0907ce624e2058bb31fab5ae565f413dbaf87f.tar.gz
move __string_read into vsscanf source file
apparently this function was intended at some point to be used by strto* family as well, and thus was put in its own file; however, as far as I can tell, it's only ever been used by vsscanf. move it to the same file to reduce the number of source files and external symbols.
Diffstat (limited to 'src/internal/stdio_impl.h')
-rw-r--r--src/internal/stdio_impl.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/internal/stdio_impl.h b/src/internal/stdio_impl.h
index d7398f59..0b2438d6 100644
--- a/src/internal/stdio_impl.h
+++ b/src/internal/stdio_impl.h
@@ -60,8 +60,6 @@ hidden size_t __stdout_write(FILE *, const unsigned char *, size_t);
hidden off_t __stdio_seek(FILE *, off_t, int);
hidden int __stdio_close(FILE *);
-hidden size_t __string_read(FILE *, unsigned char *, size_t);
-
hidden int __toread(FILE *);
hidden int __towrite(FILE *);