Deleted Added
full compact
stdio.h (228924) stdio.h (233600)
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

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

25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * @(#)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

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

25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * @(#)stdio.h 8.5 (Berkeley) 4/29/95
33 * $FreeBSD: head/include/stdio.h 228924 2011-12-28 05:35:33Z delphij $
33 * $FreeBSD: head/include/stdio.h 233600 2012-03-28 12:11:54Z theraven $
34 */
35
36#ifndef _STDIO_H_
37#define _STDIO_H_
38
39#include <sys/cdefs.h>
40#include <sys/_null.h>
41#include <sys/_types.h>

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

220#define SEEK_END 2 /* set file offset to EOF plus offset */
221#endif
222
223#define stdin __stdinp
224#define stdout __stdoutp
225#define stderr __stderrp
226
227__BEGIN_DECLS
34 */
35
36#ifndef _STDIO_H_
37#define _STDIO_H_
38
39#include <sys/cdefs.h>
40#include <sys/_null.h>
41#include <sys/_types.h>

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

220#define SEEK_END 2 /* set file offset to EOF plus offset */
221#endif
222
223#define stdin __stdinp
224#define stdout __stdoutp
225#define stderr __stderrp
226
227__BEGIN_DECLS
228#ifdef _XLOCALE_H_
229#include <xlocale/_stdio.h>
230#endif
228/*
229 * Functions defined in ANSI C standard.
230 */
231void clearerr(FILE *);
232int fclose(FILE *);
233int feof(FILE *);
234int ferror(FILE *);
235int fflush(FILE *);

--- 283 unchanged lines hidden ---
231/*
232 * Functions defined in ANSI C standard.
233 */
234void clearerr(FILE *);
235int fclose(FILE *);
236int feof(FILE *);
237int ferror(FILE *);
238int fflush(FILE *);

--- 283 unchanged lines hidden ---