blob: b1ed1dcbb45f5704ee98a64206f005f7e8d17a31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
|