diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2005-11-02 23:26:50 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2005-11-02 23:26:50 (GMT) |
commit | 4299352915cf05025553108f48b7bf58f48a8353 (patch) | |
tree | 15d43100f7a20ffbfa2b2c98286c806751685a1e /unix/tclUnixEvent.c | |
parent | 4fc8ab60904ddf9c20b0ec362fa8c179a6cb7424 (diff) | |
download | tcl-4299352915cf05025553108f48b7bf58f48a8353.zip tcl-4299352915cf05025553108f48b7bf58f48a8353.tar.gz tcl-4299352915cf05025553108f48b7bf58f48a8353.tar.bz2 |
ANSIfy
Diffstat (limited to 'unix/tclUnixEvent.c')
-rw-r--r-- | unix/tclUnixEvent.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/unix/tclUnixEvent.c b/unix/tclUnixEvent.c index 688938b..214bf4c 100644 --- a/unix/tclUnixEvent.c +++ b/unix/tclUnixEvent.c @@ -1,4 +1,4 @@ -/* +/* * tclUnixEvent.c -- * * This file implements Unix specific event related routines. @@ -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: tclUnixEvent.c,v 1.8 2005/07/20 23:16:00 dkf Exp $ + * RCS: @(#) $Id: tclUnixEvent.c,v 1.9 2005/11/02 23:26:50 dkf Exp $ */ #include "tclInt.h" @@ -30,8 +30,8 @@ */ void -Tcl_Sleep(ms) - int ms; /* Number of milliseconds to sleep. */ +Tcl_Sleep( + int ms) /* Number of milliseconds to sleep. */ { struct timeval delay; Tcl_Time before, after, vdelay; |