int connectsock(constchar *host, constchar *service,
constchar *transport);
int
connectTCP(constchar *host, constchar *service )
/* * Arguments: * host - name of host to which connection is desired * service - service associated with the desired port */
{
return connectsock( host, service, "tcp");
}