diff options
author | ache <ache@FreeBSD.org> | 2001-09-03 02:24:37 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2001-09-03 02:24:37 +0000 |
commit | cbe865cf8c86d5f4b1c19485a2cd4ff56834b78f (patch) | |
tree | 1e9ab56239da83bdafac4d6f346eacc369bb761e /lib/libc/stdio/local.h | |
parent | f1a12fefd65f6c3558da75f09d7892aa9f3cce9d (diff) | |
download | FreeBSD-src-cbe865cf8c86d5f4b1c19485a2cd4ff56834b78f.zip FreeBSD-src-cbe865cf8c86d5f4b1c19485a2cd4ff56834b78f.tar.gz |
Re-arrange my funopen(3) fix to minimize differences with original stdio code,
no functional changes.
Add fp->_offset optimization in _SAPP+_SOPT case
Diffstat (limited to 'lib/libc/stdio/local.h')
-rw-r--r-- | lib/libc/stdio/local.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libc/stdio/local.h b/lib/libc/stdio/local.h index e074273..c1c215c 100644 --- a/lib/libc/stdio/local.h +++ b/lib/libc/stdio/local.h @@ -46,6 +46,8 @@ * in particular, macros and private variables. */ +extern int _sread __P((FILE *, char *, int)); +extern int _swrite __P((FILE *, char const *, int)); extern fpos_t _sseek __P((FILE *, fpos_t, int)); extern int _ftello __P((FILE *, fpos_t *)); extern int _fseeko __P((FILE *, off_t, int, int)); |