diff options
author | donal.k.fellows@manchester.ac.uk <dkf> | 2005-11-02 23:26:50 (GMT) |
---|---|---|
committer | donal.k.fellows@manchester.ac.uk <dkf> | 2005-11-02 23:26:50 (GMT) |
commit | b0db20948a0ad4e708f4b6ddab630e4cd86bd386 (patch) | |
tree | 15d43100f7a20ffbfa2b2c98286c806751685a1e /unix/tclUnixEvent.c | |
parent | a64ada84ec82126c4e9c234855554c4674278db9 (diff) | |
download | tcl-b0db20948a0ad4e708f4b6ddab630e4cd86bd386.zip tcl-b0db20948a0ad4e708f4b6ddab630e4cd86bd386.tar.gz tcl-b0db20948a0ad4e708f4b6ddab630e4cd86bd386.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; |