aboutsummaryrefslogtreecommitdiff
path: root/src/include/plibc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/plibc.h')
-rw-r--r--src/include/plibc.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/plibc.h b/src/include/plibc.h
index 5eac9945..7118c69d 100644
--- a/src/include/plibc.h
+++ b/src/include/plibc.h
@@ -22,7 +22,7 @@
22 * @brief PlibC header 22 * @brief PlibC header
23 * @attention This file is usually not installed under Unix, 23 * @attention This file is usually not installed under Unix,
24 * so ship it with your application 24 * so ship it with your application
25 * @version $Revision: 1.27 $ 25 * @version $Revision: 1.30 $
26 */ 26 */
27 27
28#ifndef _PLIBC_H_ 28#ifndef _PLIBC_H_
@@ -173,6 +173,7 @@ extern "C" {
173#define ENOSHARE 136 /* No such host or network path */ 173#define ENOSHARE 136 /* No such host or network path */
174#define ECASECLASH 137 /* Filename exists with different case */ 174#define ECASECLASH 137 /* Filename exists with different case */
175#define EWOULDBLOCK EAGAIN /* Operation would block */ 175#define EWOULDBLOCK EAGAIN /* Operation would block */
176#define EOVERFLOW 139 /* Value too large for defined data type */
176 177
177#undef HOST_NOT_FOUND 178#undef HOST_NOT_FOUND
178#define HOST_NOT_FOUND 1 179#define HOST_NOT_FOUND 1
@@ -188,6 +189,7 @@ extern "C" {
188#define MAP_SHARED 0x1 189#define MAP_SHARED 0x1
189#define MAP_PRIVATE 0x2 /* unsupported */ 190#define MAP_PRIVATE 0x2 /* unsupported */
190#define MAP_FIXED 0x10 191#define MAP_FIXED 0x10
192#define MAP_FAILED ((void *)-1)
191 193
192struct statfs 194struct statfs
193{ 195{