Deleted Added
full compact
stdio.h (105098) stdio.h (109168)
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 * @(#)stdio.h 8.5 (Berkeley) 4/29/95
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 * @(#)stdio.h 8.5 (Berkeley) 4/29/95
37 * $FreeBSD: head/include/stdio.h 105098 2002-10-14 11:18:21Z tjr $
37 * $FreeBSD: head/include/stdio.h 109168 2003-01-13 08:41:47Z tjr $
38 */
39
40#ifndef _STDIO_H_
41#define _STDIO_H_
42
43#include <sys/cdefs.h>
44#include <sys/_types.h>
45

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

297 * These are normally used through macros as defined below, but POSIX
298 * requires functions as well.
299 */
300int getc_unlocked(FILE *);
301int getchar_unlocked(void);
302int putc_unlocked(int, FILE *);
303int putchar_unlocked(int);
304#endif
38 */
39
40#ifndef _STDIO_H_
41#define _STDIO_H_
42
43#include <sys/cdefs.h>
44#include <sys/_types.h>
45

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

297 * These are normally used through macros as defined below, but POSIX
298 * requires functions as well.
299 */
300int getc_unlocked(FILE *);
301int getchar_unlocked(void);
302int putc_unlocked(int, FILE *);
303int putchar_unlocked(int);
304#endif
305#if __BSD_VISIBLE
306void clearerr_unlocked(FILE *);
307int feof_unlocked(FILE *);
308int ferror_unlocked(FILE *);
309int fileno_unlocked(FILE *);
310#endif
305
306#if __POSIX_VISIBLE >= 200112
307int fseeko(FILE *, __off_t, int);
308__off_t ftello(FILE *);
309#endif
310
311#if __BSD_VISIBLE || __XSI_VISIBLE > 0 && __XSI_VISIBLE < 600
312int getw(FILE *);

--- 123 unchanged lines hidden ---
311
312#if __POSIX_VISIBLE >= 200112
313int fseeko(FILE *, __off_t, int);
314__off_t ftello(FILE *);
315#endif
316
317#if __BSD_VISIBLE || __XSI_VISIBLE > 0 && __XSI_VISIBLE < 600
318int getw(FILE *);

--- 123 unchanged lines hidden ---