Brucification: Don't initialize in declaration, make sure extra lines

follow declaration section.
This commit is contained in:
Jordan K. Hubbard 2003-12-18 07:44:53 +00:00
parent f415f20926
commit fee66713ad
2 changed files with 5 additions and 2 deletions

View file

@ -52,7 +52,9 @@ index
#endif
(const char *p, int ch)
{
char c = ch;
char c;
c = ch;
for (;; ++p) {
if (*p == c)
return ((char *)p);

View file

@ -53,8 +53,9 @@ rindex
(const char *p, int ch)
{
char *save;
char c = ch;
char c;
c = ch;
for (save = NULL;; ++p) {
if (*p == c)
save = (char *)p;