locale.c: Add, move some comments, and a declaration
authorKarl Williamson <public@khwilliamson.com>
Sat, 15 Feb 2014 20:09:17 +0000 (13:09 -0700)
committerKarl Williamson <public@khwilliamson.com>
Sat, 15 Feb 2014 22:50:35 +0000 (15:50 -0700)
commit0e92a118111cc7fdf7a2bf58c8e45ef7b2b85ef4
tree45c89e1cb01f9a33e52b88ac6f1d410d9b08dc92
parentb385bb4ddcb252e69a1044d702646741e2e489fb
locale.c: Add, move some comments, and a declaration

This adds some more comments at the beginning of a function concerning
its API, and moves them to before any declarations.

It also moves the declaration for 'done' to the block of other
declarations, and adds a PERL_UNUSED_VAR call if the code that uses it
is #ifdef'd out.  Previously it was too easy to not notice the
declaration separate from the others, and to insert code between the
two, which would not compile under C89, but only on Ultrix machines.
locale.c