diff options
-rw-r--r-- | unix/tclUnixTest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixTest.c b/unix/tclUnixTest.c index 94203bc..655afc4 100644 --- a/unix/tclUnixTest.c +++ b/unix/tclUnixTest.c @@ -77,7 +77,7 @@ static int TestalarmCmd _ANSI_ARGS_((ClientData dummy, Tcl_Interp *interp, int argc, char **argv)); static int TestgotsigCmd _ANSI_ARGS_((ClientData dummy, Tcl_Interp *interp, int argc, char **argv)); -void AlarmHandler _ANSI_ARGS_(()); +static void AlarmHandler _ANSI_ARGS_(()); /* *---------------------------------------------------------------------- @@ -572,7 +572,7 @@ TestalarmCmd(clientData, interp, argc, argv) *---------------------------------------------------------------------- */ -void +static void AlarmHandler() { gotsig = "1"; |