aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNils Durner <durner@gnunet.org>2006-03-17 22:30:54 +0000
committerNils Durner <durner@gnunet.org>2006-03-17 22:30:54 +0000
commit868890b1e9b1233cd320daa2a0f6d09ab593e860 (patch)
treeb3a4acdea578605301f37bd1ff7483b80c89cace
parentb7d7cd71c31d70b541c1924a90e0b11d88c6a91e (diff)
downloadgnunet-gtk-868890b1e9b1233cd320daa2a0f6d09ab593e860.tar.gz
gnunet-gtk-868890b1e9b1233cd320daa2a0f6d09ab593e860.zip
up
-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{