Deleted Added
full compact
local.h (102227) local.h (103676)
1/*-
2 * Copyright (c) 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Chris Torek.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)local.h 8.3 (Berkeley) 7/3/94
1/*-
2 * Copyright (c) 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Chris Torek.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)local.h 8.3 (Berkeley) 7/3/94
37 * $FreeBSD: head/lib/libc/stdio/local.h 102227 2002-08-21 16:20:02Z mike $
37 * $FreeBSD: head/lib/libc/stdio/local.h 103676 2002-09-20 13:20:41Z tjr $
38 */
39
40#include <sys/types.h> /* for off_t */
41#include <pthread.h>
42#include <string.h>
43#include <wchar.h>
44
45/*
46 * Information local to this implementation of stdio,
47 * in particular, macros and private variables.
48 */
49
50extern int _sread(FILE *, char *, int);
51extern int _swrite(FILE *, char const *, int);
52extern fpos_t _sseek(FILE *, fpos_t, int);
53extern int _ftello(FILE *, fpos_t *);
54extern int _fseeko(FILE *, off_t, int, int);
55extern int __fflush(FILE *fp);
38 */
39
40#include <sys/types.h> /* for off_t */
41#include <pthread.h>
42#include <string.h>
43#include <wchar.h>
44
45/*
46 * Information local to this implementation of stdio,
47 * in particular, macros and private variables.
48 */
49
50extern int _sread(FILE *, char *, int);
51extern int _swrite(FILE *, char const *, int);
52extern fpos_t _sseek(FILE *, fpos_t, int);
53extern int _ftello(FILE *, fpos_t *);
54extern int _fseeko(FILE *, off_t, int, int);
55extern int __fflush(FILE *fp);
56extern wint_t __fgetwc(FILE *);
57extern wint_t __fputwc(wchar_t, FILE *);
56extern int __sflush(FILE *);
57extern FILE *__sfp(void);
58extern int __srefill(FILE *);
59extern int __sread(void *, char *, int);
60extern int __swrite(void *, char const *, int);
61extern fpos_t __sseek(void *, fpos_t, int);
62extern int __sclose(void *);
63extern void __sinit(void);

--- 84 unchanged lines hidden ---
58extern int __sflush(FILE *);
59extern FILE *__sfp(void);
60extern int __srefill(FILE *);
61extern int __sread(void *, char *, int);
62extern int __swrite(void *, char const *, int);
63extern fpos_t __sseek(void *, fpos_t, int);
64extern int __sclose(void *);
65extern void __sinit(void);

--- 84 unchanged lines hidden ---