commit cd916940544338013d127da4db2167c0c8b5ab0b
parent 8cbc64d25218591d2840c1f4b5f12e88278d8bc1
Author: Nils Durner <durner@gnunet.org>
Date: Tue, 12 Oct 2010 18:14:03 +0000
up
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/include/plibc/plibc.h b/src/include/plibc/plibc.h
@@ -22,7 +22,7 @@
* @brief PlibC header
* @attention This file is usually not installed under Unix,
* so ship it with your application
- * @version $Revision: 65 $
+ * @version $Revision: 69 $
*/
#ifndef _PLIBC_H_
@@ -94,7 +94,7 @@ struct sockaddr_un {
};
#ifndef pid_t
- #define pid_t int
+ #define pid_t DWORD
#endif
#ifndef error_t
@@ -470,7 +470,7 @@ char *strcasestr(const char *haystack_start, const char *needle_start);
#ifndef WINDOWS
#define DIR_SEPARATOR '/'
#define DIR_SEPARATOR_STR "/"
- #define PATH_SEPARATOR ';'
+ #define PATH_SEPARATOR ':'
#define PATH_SEPARATOR_STR ":"
#define NEWLINE "\n"
@@ -564,7 +564,7 @@ char *strcasestr(const char *haystack_start, const char *needle_start);
#else
#define DIR_SEPARATOR '\\'
#define DIR_SEPARATOR_STR "\\"
- #define PATH_SEPARATOR ':'
+ #define PATH_SEPARATOR ';'
#define PATH_SEPARATOR_STR ";"
#define NEWLINE "\r\n"