From 0e04be019638f430a0a5aebb9f28cd5a7d615c12 Mon Sep 17 00:00:00 2001 From: marcel Date: Sat, 3 May 2008 23:36:00 +0000 Subject: Unbreak build: gnu sort has been configured to grope inside struct __sFILE. It's opaque now, so add a function that returns the pending output bytes. Pointy hat: jhb --- lib/libc/stdio/stdio.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'lib') diff --git a/lib/libc/stdio/stdio.c b/lib/libc/stdio/stdio.c index 3da2957..b6d01e3 100644 --- a/lib/libc/stdio/stdio.c +++ b/lib/libc/stdio/stdio.c @@ -53,6 +53,13 @@ __fgetcookie(FILE *fp) return (fp->_cookie); } +size_t +__fgetpendout(FILE *fp) +{ + + return (fp->_p - fp->_bf._base); +} + void __fsetfileno(FILE *fp, int fd) { -- cgit v1.1