summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-01-28 03:58:10 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-01-28 03:58:10 +0000
commit8deda624022446288c030a7f6fed1510fd524fdc (patch)
tree054500b8c9301fde394f16068d7ced5653ef06a8 /cpukit/libnetworking
parent2007-01-27 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-8deda624022446288c030a7f6fed1510fd524fdc.tar.bz2
2007-01-28 Ralf Corsépius <ralf.corsepius@rtems.org>
* libnetworking/libc/gethostbyht.c: Remove warning on unused vars. Remove isblank (supposed to be provided by libc).
Diffstat (limited to 'cpukit/libnetworking')
-rw-r--r--cpukit/libnetworking/libc/gethostbyht.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/cpukit/libnetworking/libc/gethostbyht.c b/cpukit/libnetworking/libc/gethostbyht.c
index df785cc351..8fc850c603 100644
--- a/cpukit/libnetworking/libc/gethostbyht.c
+++ b/cpukit/libnetworking/libc/gethostbyht.c
@@ -79,9 +79,11 @@ static u_char host_addr[16]; /* IPv4 or IPv6 */
static char *h_addr_ptrs[2];
static int stayopen = 0;
+#ifdef _THREAD_SAFE
static char* hostmap = NULL;
static unsigned int hostlen = 0;
static char *cur;
+#endif
void
_sethosthtent(f)
@@ -208,12 +210,6 @@ _gethostbyhtaddr(addr, len, af)
#ifdef _THREAD_SAFE
-
-static int isblank ( int ch )
-{
- return ch == ' ' || ch == '\t';
-}
-
struct hostent* gethostent_r(char* buf, int len)
{
char *dest;