diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2007-04-10 22:01:06 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2007-04-10 22:01:06 (GMT) |
| commit | 956c123ace4ea64689551872207b3366653d9cc3 (patch) | |
| tree | 7ab0e34ded7560b77021fda4bdf65127a7871c4c | |
| parent | 57f4a6789aaec0803fe66f725890dfa7b01dadad (diff) | |
| download | tcl-956c123ace4ea64689551872207b3366653d9cc3.zip tcl-956c123ace4ea64689551872207b3366653d9cc3.tar.gz tcl-956c123ace4ea64689551872207b3366653d9cc3.tar.bz2 | |
Complete conversion to ANSI function definitions
| -rw-r--r-- | generic/regc_locale.c | 16 |
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; |
