From 14f3bca0ecc2c5d688088c6c567c28d100b769f7 Mon Sep 17 00:00:00 2001 From: stanton Date: Thu, 4 Mar 1999 01:01:00 +0000 Subject: * unix/tclUnixSock.c: Added TclHasSockets. --- unix/tclUnixSock.c | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/unix/tclUnixSock.c b/unix/tclUnixSock.c index 7a479b2..de6b9a9 100644 --- a/unix/tclUnixSock.c +++ b/unix/tclUnixSock.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUnixSock.c,v 1.2 1998/09/14 18:40:17 stanton Exp $ + * RCS: @(#) $Id: tclUnixSock.c,v 1.2.4.1 1999/03/04 01:01:00 stanton Exp $ */ #include "tcl.h" @@ -98,3 +98,26 @@ Tcl_GetHostName() hostname[0] = 0; return hostname; } + +/* + *---------------------------------------------------------------------- + * + * TclHasSockets -- + * + * Detect if sockets are available on this platform. + * + * Results: + * Returns TCL_OK. + * + * Side effects: + * None. + * + *---------------------------------------------------------------------- + */ + +int +TclHasSockets(interp) + Tcl_Interp *interp; /* Not used. */ +{ + return TCL_OK; +} -- cgit v0.12