diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2004-04-27 20:26:05 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2004-04-27 20:26:05 -0400 |
commit | 2cd8e80bfe2792ce8999a26b34384598f58e3889 (patch) | |
tree | 780917a289058c7d05e893a8a1b3dc88d4a7030f /WWW/Library/Implementation/HTVMS_WaisUI.c | |
parent | bff0a2c0390cf1536254ea168d2581cc9550325f (diff) | |
download | lynx-snapshots-2cd8e80bfe2792ce8999a26b34384598f58e3889.tar.gz |
snapshot of project "lynx", label v2-8-6dev_2
Diffstat (limited to 'WWW/Library/Implementation/HTVMS_WaisUI.c')
-rw-r--r-- | WWW/Library/Implementation/HTVMS_WaisUI.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/WWW/Library/Implementation/HTVMS_WaisUI.c b/WWW/Library/Implementation/HTVMS_WaisUI.c index 5aaa9e69..0c703acf 100644 --- a/WWW/Library/Implementation/HTVMS_WaisUI.c +++ b/WWW/Library/Implementation/HTVMS_WaisUI.c @@ -176,7 +176,7 @@ char *database_name) * to those trying to modify the transport code to use non-UNIX streams: * This is the function to modify! */ -PRIVATE long read_from_stream(int d, char *buf, long nbytes) +static long read_from_stream(int d, char *buf, long nbytes) { long didRead; long toRead = nbytes; @@ -203,7 +203,7 @@ PRIVATE long read_from_stream(int d, char *buf, long nbytes) /* returns the length of the response, 0 if an error */ -PRIVATE long +static long transport_message( long connection, char *request_message, @@ -331,7 +331,7 @@ interpret_message( /* modifies the string to exclude all seeker codes. sets length to the new length. */ -PRIVATE char *delete_seeker_codes(char *string, long *length) +static char *delete_seeker_codes(char *string, long *length) { long original_count; /* index into the original string */ long new_count = 0; /* index into the collapsed string */ @@ -1955,7 +1955,7 @@ readQueryTerm(query_term** qt, char* buffer) /*----------------------------------------------------------------------*/ -static unsigned long getQueryTermSize PARAMS((query_term* qt)); +static unsigned long getQueryTermSize (query_term* qt); static unsigned long getQueryTermSize(query_term* qt) @@ -2078,7 +2078,7 @@ readQuery(any *info) /*----------------------------------------------------------------------*/ -static void exitAction PARAMS((long error)); +static void exitAction (long error); static void exitAction(long error GCC_UNUSED) |