Deleted Added
full compact
stand.h (192679) stand.h (223905)
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 192679 2009-05-24 11:37:10Z dfr $
26 * $FreeBSD: head/lib/libstand/stand.h 223905 2011-07-10 07:25:34Z avatar $
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

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

60
61#ifndef STAND_H
62#define STAND_H
63
64#include <sys/types.h>
65#include <sys/cdefs.h>
66#include <sys/stat.h>
67#include <sys/dirent.h>
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

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

60
61#ifndef STAND_H
62#define STAND_H
63
64#include <sys/types.h>
65#include <sys/cdefs.h>
66#include <sys/stat.h>
67#include <sys/dirent.h>
68
69/* this header intentionally exports NULL from <string.h> */
68#include <string.h>
69
70#define CHK(fmt, args...) printf("%s(%d): " fmt "\n", __func__, __LINE__ , ##args)
71#define PCHK(fmt, args...) {printf("%s(%d): " fmt "\n", __func__, __LINE__ , ##args); getchar();}
72
70#include <string.h>
71
72#define CHK(fmt, args...) printf("%s(%d): " fmt "\n", __func__, __LINE__ , ##args)
73#define PCHK(fmt, args...) {printf("%s(%d): " fmt "\n", __func__, __LINE__ , ##args); getchar();}
74
73#ifndef NULL
74#define NULL 0
75#endif
76
77/* Avoid unwanted userlandish components */
78#define _KERNEL
79#include <sys/errno.h>
80#undef _KERNEL
81
82/* special stand error codes */
83#define EADAPT (ELAST+1) /* bad adaptor */
84#define ECTLR (ELAST+2) /* bad controller */

--- 320 unchanged lines hidden ---
75/* Avoid unwanted userlandish components */
76#define _KERNEL
77#include <sys/errno.h>
78#undef _KERNEL
79
80/* special stand error codes */
81#define EADAPT (ELAST+1) /* bad adaptor */
82#define ECTLR (ELAST+2) /* bad controller */

--- 320 unchanged lines hidden ---