Deleted Added
full compact
local.h (82709) local.h (82807)
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

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

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 *
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

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

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 *
38 * $FreeBSD: head/lib/libc/stdio/local.h 82709 2001-09-01 01:56:54Z ache $
38 * $FreeBSD: head/lib/libc/stdio/local.h 82807 2001-09-02 19:10:10Z ache $
39 */
40
41#include <sys/types.h> /* for off_t */
42#include <pthread.h>
43
44/*
45 * Information local to this implementation of stdio,
46 * in particular, macros and private variables.
47 */
48
39 */
40
41#include <sys/types.h> /* for off_t */
42#include <pthread.h>
43
44/*
45 * Information local to this implementation of stdio,
46 * in particular, macros and private variables.
47 */
48
49extern fpos_t _sseek __P((FILE *, fpos_t, int));
49extern int _ftello __P((FILE *, fpos_t *));
50extern int _fseeko __P((FILE *, off_t, int, int));
51extern int __fflush __P((FILE *fp));
52extern int __sflush __P((FILE *));
53extern FILE *__sfp __P((void));
54extern int __srefill __P((FILE *));
55extern int __sread __P((void *, char *, int));
56extern int __swrite __P((void *, char const *, int));

--- 58 unchanged lines hidden ---
50extern int _ftello __P((FILE *, fpos_t *));
51extern int _fseeko __P((FILE *, off_t, int, int));
52extern int __fflush __P((FILE *fp));
53extern int __sflush __P((FILE *));
54extern FILE *__sfp __P((void));
55extern int __srefill __P((FILE *));
56extern int __sread __P((void *, char *, int));
57extern int __swrite __P((void *, char const *, int));

--- 58 unchanged lines hidden ---