diff options
author | rjohnson <rjohnson> | 1998-10-14 00:32:55 (GMT) |
---|---|---|
committer | rjohnson <rjohnson> | 1998-10-14 00:32:55 (GMT) |
commit | a9c63f1a5538497bd1f1bac4aa1ba50129427aea (patch) | |
tree | 040ca11762a37b1ab3aeeda44d22797c8c2e9e3b /unix | |
parent | 2145c0e799d0659cd675a37728d7fb9c64f04904 (diff) | |
download | tcl-a9c63f1a5538497bd1f1bac4aa1ba50129427aea.zip tcl-a9c63f1a5538497bd1f1bac4aa1ba50129427aea.tar.gz tcl-a9c63f1a5538497bd1f1bac4aa1ba50129427aea.tar.bz2 |
Made some the prototypes & function defs consistant in tclUnixTest.c
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tclUnixTest.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/unix/tclUnixTest.c b/unix/tclUnixTest.c index 564b368..a8b48ea 100644 --- a/unix/tclUnixTest.c +++ b/unix/tclUnixTest.c @@ -4,11 +4,12 @@ * Contains platform specific test commands for the Unix platform. * * Copyright (c) 1996 Sun Microsystems, Inc. + * Copyright (c) 1998 by Scriptics Corporation. * * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUnixTest.c,v 1.8 1998/09/14 18:40:18 stanton Exp $ + * RCS: @(#) $Id: tclUnixTest.c,v 1.9 1998/10/14 00:32:55 rjohnson Exp $ */ #include "tclInt.h" @@ -516,7 +517,7 @@ TestgetopenfileCmd(clientData, interp, argc, argv) *---------------------------------------------------------------------- */ -int +static int TestalarmCmd(clientData, interp, argc, argv) ClientData clientData; /* Not used. */ Tcl_Interp *interp; /* Current interpreter. */ @@ -593,7 +594,7 @@ AlarmHandler() *---------------------------------------------------------------------- */ -int +static int TestgotsigCmd(clientData, interp, argc, argv) ClientData clientData; /* Not used. */ Tcl_Interp *interp; /* Current interpreter. */ |