diff options
author | welch <welch> | 1998-08-07 11:03:05 (GMT) |
---|---|---|
committer | welch <welch> | 1998-08-07 11:03:05 (GMT) |
commit | e455d67c2f46e245f96e3299df9fc245da96b297 (patch) | |
tree | 6e8a588ae61a94c454981d7624fa60d9ae8a8c06 /unix | |
parent | 75994376b6cf93b85003527389dbf97b1cde3067 (diff) | |
download | tcl-e455d67c2f46e245f96e3299df9fc245da96b297.zip tcl-e455d67c2f46e245f96e3299df9fc245da96b297.tar.gz tcl-e455d67c2f46e245f96e3299df9fc245da96b297.tar.bz2 |
Make AlarmHandler static
Diffstat (limited to 'unix')
-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"; |