aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorNils Durner <durner@gnunet.org>2010-10-12 18:13:03 +0000
committerNils Durner <durner@gnunet.org>2010-10-12 18:13:03 +0000
commit5ddf5f6419fe940648002c55c54b66ff0a9a8ea6 (patch)
tree28d0128e9fcee4a3392f818e76e864b2259b6bb8 /src/include
parent5b5dd59c017ef74954cadb1bf2203fb3f9677152 (diff)
downloadlibextractor-5ddf5f6419fe940648002c55c54b66ff0a9a8ea6.tar.gz
libextractor-5ddf5f6419fe940648002c55c54b66ff0a9a8ea6.zip
up
Diffstat (limited to 'src/include')
-rw-r--r--src/include/plibc.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/plibc.h b/src/include/plibc.h
index c348d5d..4e3204c 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: 65 $ 25 * @version $Revision: 69 $
26 */ 26 */
27 27
28#ifndef _PLIBC_H_ 28#ifndef _PLIBC_H_
@@ -94,7 +94,7 @@ struct sockaddr_un {
94}; 94};
95 95
96#ifndef pid_t 96#ifndef pid_t
97 #define pid_t int 97 #define pid_t DWORD
98#endif 98#endif
99 99
100#ifndef error_t 100#ifndef error_t
@@ -470,7 +470,7 @@ char *strcasestr(const char *haystack_start, const char *needle_start);
470#ifndef WINDOWS 470#ifndef WINDOWS
471 #define DIR_SEPARATOR '/' 471 #define DIR_SEPARATOR '/'
472 #define DIR_SEPARATOR_STR "/" 472 #define DIR_SEPARATOR_STR "/"
473 #define PATH_SEPARATOR ';' 473 #define PATH_SEPARATOR ':'
474 #define PATH_SEPARATOR_STR ":" 474 #define PATH_SEPARATOR_STR ":"
475 #define NEWLINE "\n" 475 #define NEWLINE "\n"
476 476
@@ -564,7 +564,7 @@ char *strcasestr(const char *haystack_start, const char *needle_start);
564#else 564#else
565 #define DIR_SEPARATOR '\\' 565 #define DIR_SEPARATOR '\\'
566 #define DIR_SEPARATOR_STR "\\" 566 #define DIR_SEPARATOR_STR "\\"
567 #define PATH_SEPARATOR ':' 567 #define PATH_SEPARATOR ';'
568 #define PATH_SEPARATOR_STR ";" 568 #define PATH_SEPARATOR_STR ";"
569 #define NEWLINE "\r\n" 569 #define NEWLINE "\r\n"
570 570