summaryrefslogtreecommitdiffstats
path: root/generic/regc_locale.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2007-04-10 22:01:06 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2007-04-10 22:01:06 (GMT)
commita095d55c068257794461d06c5e709aee424b9679 (patch)
tree7ab0e34ded7560b77021fda4bdf65127a7871c4c /generic/regc_locale.c
parent0379fe02395721d2ea1419c61ca69ec818561082 (diff)
downloadtcl-a095d55c068257794461d06c5e709aee424b9679.zip
tcl-a095d55c068257794461d06c5e709aee424b9679.tar.gz
tcl-a095d55c068257794461d06c5e709aee424b9679.tar.bz2
Complete conversion to ANSI function definitions
Diffstat (limited to 'generic/regc_locale.c')
-rw-r--r--generic/regc_locale.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/generic/regc_locale.c b/generic/regc_locale.c
index a3b82d4..be01dfb 100644
--- a/generic/regc_locale.c
+++ b/generic/regc_locale.c
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: regc_locale.c,v 1.15 2007/02/20 23:24:04 nijtmans Exp $
+ * RCS: @(#) $Id: regc_locale.c,v 1.16 2007/04/10 22:01:06 dkf Exp $
*/
/* ASCII character-name table */
@@ -760,8 +760,8 @@ range(
^ static int before(celt, celt);
*/
static int /* predicate */
-before(x, y)
- celt x, y; /* collating elements */
+before(
+ celt x, celt y) /* collating elements */
{
/*
* trivial because no MCCEs.
@@ -779,11 +779,11 @@ before(x, y)
^ static struct cvec *eclass(struct vars *, celt, int);
*/
static struct cvec *
-eclass(v, c, cases)
- struct vars *v; /* context */
- celt c; /* Collating element representing
- * the equivalence class. */
- int cases; /* all cases? */
+eclass(
+ struct vars *v, /* context */
+ celt c, /* Collating element representing the
+ * equivalence class. */
+ int cases) /* all cases? */
{
struct cvec *cv;