diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-09-17 14:10:38 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-09-17 14:10:38 +0000 |
commit | e30dcd05017726859fb185090741b700996f26aa (patch) | |
tree | 90ee086525127222fec1149608a2050d08275224 /src | |
parent | 24dc7cffbdb0f2be6a34ebfdfa7540cddde4c50d (diff) |
Linus Nielsen Feltzing's telnet-for-win32 fixes
Diffstat (limited to 'src')
-rw-r--r-- | src/setup.h | 2 | ||||
-rw-r--r-- | src/version.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/setup.h b/src/setup.h index cf47843c5..74c4e8490 100644 --- a/src/setup.h +++ b/src/setup.h @@ -44,7 +44,7 @@ #define OS "unknown" #endif -#ifndef fileno /* sunos 4 have this as a macro! */ +#if !defined(fileno) && !defined(WIN32) /* sunos 4 have this as a macro! */ int fileno( FILE *stream); #endif diff --git a/src/version.h b/src/version.h index 6e8594a98..f0c5e8808 100644 --- a/src/version.h +++ b/src/version.h @@ -1,3 +1,3 @@ #define CURL_NAME "curl" -#define CURL_VERSION "7.8.2-pre1" +#define CURL_VERSION "7.9-pre6" #define CURL_ID CURL_NAME " " CURL_VERSION " (" OS ") " |