21 lines
656 B
C
21 lines
656 B
C
|
/**
|
||
|
* @copyright 2015 Indie Semiconductor.
|
||
|
*
|
||
|
* This file is proprietary to Indie Semiconductor.
|
||
|
* All rights reserved. Reproduction or distribution, in whole
|
||
|
* or in part, is forbidden except by express written permission
|
||
|
* of Indie Semiconductor.
|
||
|
*
|
||
|
* @file errno.h
|
||
|
*/
|
||
|
|
||
|
#ifndef ERRNO_H__
|
||
|
#define ERRNO_H__
|
||
|
|
||
|
#define EPERM 1U /*!< Operation not permitted */
|
||
|
#define EAGAIN 2U /*!< Try again */
|
||
|
#define EFAULT 3U /*!< Bad address */
|
||
|
#define EBUSY 4U /*!< Device or resource busy */
|
||
|
#define ENODEV 5U /*!< No such device */
|
||
|
#define ETIMEOUT 6U /*!< Time out */
|
||
|
#endif
|