diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 1997-04-16 01:40:22 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 1997-04-16 01:40:22 -0400 |
commit | e4409c408eedf320b8845cafdd62b664bec1afd8 (patch) | |
tree | ccce96259ffd0a5edf9dc05e49262aaf5854fd99 /WWW/Library/Implementation/HTTCP.h | |
parent | 36a66292ee2ec3530d776892d22d6c5ace810ae0 (diff) | |
download | lynx-snapshots-e4409c408eedf320b8845cafdd62b664bec1afd8.tar.gz |
snapshot of project "lynx", label v2-7-1ac_0-6
Diffstat (limited to 'WWW/Library/Implementation/HTTCP.h')
-rw-r--r-- | WWW/Library/Implementation/HTTCP.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/WWW/Library/Implementation/HTTCP.h b/WWW/Library/Implementation/HTTCP.h index 1187c459..b4dab1d6 100644 --- a/WWW/Library/Implementation/HTTCP.h +++ b/WWW/Library/Implementation/HTTCP.h @@ -26,11 +26,13 @@ ** returns a pointer to a static string which must be copied if ** it is to be kept. */ +#ifndef _WINDOWS #ifdef __STDC__ - extern const char * HTInetString(struct sockaddr_in* sin); + extern const char * HTInetString(struct sockaddr_in* mysin); #else extern char * HTInetString(); #endif +#endif /* Encode INET status (as in sys/errno.h) inet_status() @@ -88,7 +90,7 @@ extern unsigned int HTCardinal PARAMS((int *pstatus, ** field is left unchanged in *sin. */ #ifdef __STDC__ - extern int HTParseInet(struct sockaddr_in * sin, CONST char * str); + extern int HTParseInet(struct sockaddr_in * mysin, CONST char * str); /*!! had to change this to get it to compile. CTB */ #else extern int HTParseInet(); |