2015-10-19 19:45:08 +00:00
|
|
|
/* -*- c-basic-offset: 4; indent-tabs-mode: nil -*- */
|
|
|
|
/* ====================================================================
|
2016-06-19 18:53:24 +00:00
|
|
|
* Copyright (c) 2007 Carnegie Mellon University. All rights
|
2015-10-19 19:45:08 +00:00
|
|
|
* reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* This work was supported in part by funding from the Defense Advanced
|
|
|
|
* Research Projects Agency and the National Science Foundation of the
|
|
|
|
* United States of America, and the CMU Sphinx Speech Consortium.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY CARNEGIE MELLON UNIVERSITY ``AS IS'' AND
|
|
|
|
* ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY
|
|
|
|
* NOR ITS EMPLOYEES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* ====================================================================
|
2016-06-19 18:53:24 +00:00
|
|
|
/*********************************************************************
|
2015-10-19 19:45:08 +00:00
|
|
|
*
|
2016-06-19 18:53:24 +00:00
|
|
|
* File: errno.h
|
|
|
|
*
|
|
|
|
* Description: functions and variables missing from Windows CE standard
|
|
|
|
* library
|
|
|
|
*
|
|
|
|
* Author: Silvio Moioli <silvio@moioli.net>
|
|
|
|
*
|
|
|
|
*********************************************************************/
|
2015-10-19 19:45:08 +00:00
|
|
|
|
2016-06-19 18:53:24 +00:00
|
|
|
#ifndef __ERRNO_H__
|
|
|
|
#define __ERRNO_H__
|
2015-10-19 19:45:08 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2016-06-19 18:53:24 +00:00
|
|
|
extern "C" extern int errno;
|
|
|
|
#else
|
|
|
|
extern int errno;
|
2015-10-19 19:45:08 +00:00
|
|
|
#endif
|
|
|
|
|
2016-06-19 18:53:24 +00:00
|
|
|
#define EPERM 1
|
|
|
|
#define ENOENT 2
|
|
|
|
#define ESRCH 3
|
|
|
|
#define EINTR 4
|
|
|
|
#define EIO 5
|
|
|
|
#define ENXIO 6
|
|
|
|
#define E2BIG 7
|
|
|
|
#define ENOEXEC 8
|
|
|
|
#define EBADF 9
|
|
|
|
#define ECHILD 10
|
|
|
|
#define EAGAIN 11
|
|
|
|
#define ENOMEM 12
|
|
|
|
#define EACCES 13
|
|
|
|
#define EFAULT 14
|
|
|
|
#define EBUSY 16
|
|
|
|
#define EEXIST 17
|
|
|
|
#define EXDEV 18
|
|
|
|
#define ENODEV 19
|
|
|
|
#define ENOTDIR 20
|
|
|
|
#define EISDIR 21
|
|
|
|
#define EINVAL 22
|
|
|
|
#define ENFILE 23
|
|
|
|
#define EMFILE 24
|
|
|
|
#define ENOTTY 25
|
|
|
|
#define EFBIG 27
|
|
|
|
#define ENOSPC 28
|
|
|
|
#define ESPIPE 29
|
|
|
|
#define EROFS 30
|
|
|
|
#define EMLINK 31
|
|
|
|
#define EPIPE 32
|
|
|
|
#define EDOM 33
|
|
|
|
#define ERANGE 34
|
|
|
|
#define EDEADLK 36
|
|
|
|
#define ENAMETOOLONG 38
|
|
|
|
#define ENOLCK 39
|
|
|
|
#define ENOSYS 40
|
|
|
|
#define ENOTEMPTY 41
|
|
|
|
#define EILSEQ 42
|
2015-10-19 19:45:08 +00:00
|
|
|
|
2016-06-19 18:53:24 +00:00
|
|
|
#endif /* __ERRNO_H__ */
|