diff options
Diffstat (limited to 'newlib/libc/stdio64/local64.h')
-rw-r--r-- | newlib/libc/stdio64/local64.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/newlib/libc/stdio64/local64.h b/newlib/libc/stdio64/local64.h new file mode 100644 index 000000000..b1ed1dcbb --- /dev/null +++ b/newlib/libc/stdio64/local64.h @@ -0,0 +1,13 @@ +/* + * Information local to this implementation of stdio64, + * in particular, macros and private variables. + */ + +#include "local.h" + +#ifdef __LARGE64_FILES +extern fpos64_t _EXFUN(__sseek64,(void *, fpos64_t, int)); +extern fpos64_t _EXFUN(__sseek64_error,(void *, fpos64_t, int)); +extern _READ_WRITE_RETURN_TYPE _EXFUN(__swrite64,(void *, char const *, int)); +#endif + |