summaryrefslogtreecommitdiff
path: root/src/stdio/__fpending.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-06-30 12:44:48 -0400
committerRich Felker <dalias@aerifal.cx>2011-06-30 12:44:48 -0400
commita0b56b947a5a8a58fe2accea7f6d9ee927d70ad4 (patch)
tree8080301f6ee6645bd39d390422956452bc98b5df /src/stdio/__fpending.c
parent7640497f5f28ddb4aa13528676a99b603320f47e (diff)
downloadmusl-a0b56b947a5a8a58fe2accea7f6d9ee927d70ad4.tar.gz
add and consolidate nasty stdio_ext junk
hopefully this resolves the rest of the issues with hideously nonportable hacks in programs that use gnulib.
Diffstat (limited to 'src/stdio/__fpending.c')
-rw-r--r--src/stdio/__fpending.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/stdio/__fpending.c b/src/stdio/__fpending.c
deleted file mode 100644
index a4334e23..00000000
--- a/src/stdio/__fpending.c
+++ /dev/null
@@ -1,6 +0,0 @@
-#include "stdio_impl.h"
-
-size_t __fpending(FILE *f)
-{
- return f->wend ? f->wpos - f->wbase : 0;
-}