libextractor

GNU libextractor
Log | Files | Refs | Submodules | README | LICENSE

commit 5ddf5f6419fe940648002c55c54b66ff0a9a8ea6
parent 5b5dd59c017ef74954cadb1bf2203fb3f9677152
Author: Nils Durner <durner@gnunet.org>
Date:   Tue, 12 Oct 2010 18:13:03 +0000

up

Diffstat:
Msrc/include/plibc.h | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/include/plibc.h b/src/include/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"