Make more things be static (like they are supposed to be).

This commit is contained in:
Eric Andersen 2000-12-20 23:40:57 +00:00
parent a6cd07099d
commit 16fdbe8b27
2 changed files with 8 additions and 8 deletions

View File

@ -173,19 +173,19 @@ static int bit_test_and_clear(unsigned int *addr, unsigned int nr)
} }
void die(const char *str) static void die(const char *str)
{ {
error_msg("%s\n", str); error_msg("%s\n", str);
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
} }
void page_ok(int page) static void page_ok(int page)
{ {
if (version == 0) if (version == 0)
bit_set(signature_page, page); bit_set(signature_page, page);
} }
void page_bad(int page) static void page_bad(int page)
{ {
if (version == 0) if (version == 0)
bit_test_and_clear(signature_page, page); bit_test_and_clear(signature_page, page);
@ -197,7 +197,7 @@ void page_bad(int page)
badpages++; badpages++;
} }
void check_blocks(void) static void check_blocks(void)
{ {
unsigned int current_page; unsigned int current_page;
int do_seek = 1; int do_seek = 1;

View File

@ -173,19 +173,19 @@ static int bit_test_and_clear(unsigned int *addr, unsigned int nr)
} }
void die(const char *str) static void die(const char *str)
{ {
error_msg("%s\n", str); error_msg("%s\n", str);
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
} }
void page_ok(int page) static void page_ok(int page)
{ {
if (version == 0) if (version == 0)
bit_set(signature_page, page); bit_set(signature_page, page);
} }
void page_bad(int page) static void page_bad(int page)
{ {
if (version == 0) if (version == 0)
bit_test_and_clear(signature_page, page); bit_test_and_clear(signature_page, page);
@ -197,7 +197,7 @@ void page_bad(int page)
badpages++; badpages++;
} }
void check_blocks(void) static void check_blocks(void)
{ {
unsigned int current_page; unsigned int current_page;
int do_seek = 1; int do_seek = 1;