Deleted Added
full compact
errno.h (92719) errno.h (96755)
1/*
2 * Copyright (c) 1982, 1986, 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

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

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)errno.h 8.5 (Berkeley) 1/21/94
1/*
2 * Copyright (c) 1982, 1986, 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

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

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)errno.h 8.5 (Berkeley) 1/21/94
39 * $FreeBSD: head/sys/sys/errno.h 92719 2002-03-19 20:18:42Z alfred $
39 * $FreeBSD: head/sys/sys/errno.h 96755 2002-05-16 21:28:32Z trhodes $
40 */
41
42#ifndef _SYS_ERRNO_H_
43#define _SYS_ERRNO_H_
44
45#ifndef _KERNEL
46#include <sys/cdefs.h>
47__BEGIN_DECLS

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

79#define EMFILE 24 /* Too many open files */
80#define ENOTTY 25 /* Inappropriate ioctl for device */
81#ifndef _POSIX_SOURCE
82#define ETXTBSY 26 /* Text file busy */
83#endif
84#define EFBIG 27 /* File too large */
85#define ENOSPC 28 /* No space left on device */
86#define ESPIPE 29 /* Illegal seek */
40 */
41
42#ifndef _SYS_ERRNO_H_
43#define _SYS_ERRNO_H_
44
45#ifndef _KERNEL
46#include <sys/cdefs.h>
47__BEGIN_DECLS

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

79#define EMFILE 24 /* Too many open files */
80#define ENOTTY 25 /* Inappropriate ioctl for device */
81#ifndef _POSIX_SOURCE
82#define ETXTBSY 26 /* Text file busy */
83#endif
84#define EFBIG 27 /* File too large */
85#define ENOSPC 28 /* No space left on device */
86#define ESPIPE 29 /* Illegal seek */
87#define EROFS 30 /* Read-only file system */
87#define EROFS 30 /* Read-only filesystem */
88#define EMLINK 31 /* Too many links */
89#define EPIPE 32 /* Broken pipe */
90
91/* math software */
92#define EDOM 33 /* Numerical argument out of domain */
93#define ERANGE 34 /* Result too large */
94
95/* non-blocking and interrupt i/o */

--- 87 unchanged lines hidden ---
88#define EMLINK 31 /* Too many links */
89#define EPIPE 32 /* Broken pipe */
90
91/* math software */
92#define EDOM 33 /* Numerical argument out of domain */
93#define ERANGE 34 /* Result too large */
94
95/* non-blocking and interrupt i/o */

--- 87 unchanged lines hidden ---