Deleted Added
full compact
stand.h (121532) stand.h (124570)
1/*
2 * Copyright (c) 1998 Michael Smith.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*
2 * Copyright (c) 1998 Michael Smith.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/lib/libstand/stand.h 121532 2003-10-26 04:04:12Z peter $
26 * $FreeBSD: head/lib/libstand/stand.h 124570 2004-01-15 18:35:32Z jhb $
27 * From $NetBSD: stand.h,v 1.22 1997/06/26 19:17:40 drochner Exp $
28 */
29
30/*-
31 * Copyright (c) 1993
32 * The Regents of the University of California. All rights reserved.
33 *
34 * Redistribution and use in source and binary forms, with or without

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

364 * Machine dependent functions and data, must be provided or stubbed by
365 * the consumer
366 */
367extern int getchar(void);
368extern int ischar(void);
369extern void putchar(int);
370extern int devopen(struct open_file *, const char *, const char **);
371extern int devclose(struct open_file *f);
27 * From $NetBSD: stand.h,v 1.22 1997/06/26 19:17:40 drochner Exp $
28 */
29
30/*-
31 * Copyright (c) 1993
32 * The Regents of the University of California. All rights reserved.
33 *
34 * Redistribution and use in source and binary forms, with or without

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

364 * Machine dependent functions and data, must be provided or stubbed by
365 * the consumer
366 */
367extern int getchar(void);
368extern int ischar(void);
369extern void putchar(int);
370extern int devopen(struct open_file *, const char *, const char **);
371extern int devclose(struct open_file *f);
372extern void panic(const char *, ...) __dead2;
372extern void panic(const char *, ...) __dead2 __printflike(1, 2);
373extern struct fs_ops *file_system[];
374extern struct devsw *devsw[];
375
376/*
377 * Expose byteorder(3) functions.
378 */
379#ifndef _BYTEORDER_PROTOTYPED
380#define _BYTEORDER_PROTOTYPED

--- 30 unchanged lines hidden ---
373extern struct fs_ops *file_system[];
374extern struct devsw *devsw[];
375
376/*
377 * Expose byteorder(3) functions.
378 */
379#ifndef _BYTEORDER_PROTOTYPED
380#define _BYTEORDER_PROTOTYPED

--- 30 unchanged lines hidden ---